mirror of
https://github.com/tabler/tabler.git
synced 2026-08-16 00:02:21 +04:00
26 lines
440 B
TypeScript
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>;
|
|
}
|