OptionsTable.tsx 440 B

12345678910111213141516171819202122232425
  1. import { FC, ReactNode } from 'react';
  2. export function OptionsTable({ children }) {
  3. return (
  4. <div className="options-table">
  5. {children}
  6. </div>
  7. );
  8. }
  9. export function OptionTitle({ children }) {
  10. return (
  11. <div className="options-table-title not-markdown">
  12. {children}
  13. </div>
  14. );
  15. }
  16. export function OptionDescription({ children }) {
  17. return <div className="options-table-description">{children}</div>;
  18. }