1
0
mirror of https://github.com/tabler/tabler.git synced 2026-08-16 00:02:21 +04:00
Files
tabler/site/components/mdx/OptionsTable.tsx
T
2023-07-18 00:13:56 +02:00

26 lines
440 B
TypeScript

import { FC, ReactNode } from 'react';
export function OptionsTable({ children }) {
return (
<div className="options-table">
{children}
</div>
);
}
export function OptionTitle({ children }) {
return (
<div className="options-table-title not-markdown">
{children}
</div>
);
}
export function OptionDescription({ children }) {
return <div className="options-table-description">{children}</div>;
}