Files
chat-with-gpt/src/components/settings/option.tsx
2023-03-10 14:00:37 -08:00

13 lines
323 B
TypeScript

export default function SettingsOption(props: {
focused?: boolean;
heading?: string;
children?: any;
span?: number;
}) {
return (
<section className={props.focused ? 'focused' : ''}>
{props.heading && <h3>{props.heading}</h3>}
{props.children}
</section>
);
}