import { XCircle } from 'lucide-react' import { type FC, type PropsWithChildren, useState } from 'react' import { CollapsibleContent, CollapsibleTrigger, Collapsible, cn } from 'ui' import ApiSchema from '~/components/ApiSchema' interface IOptions { name?: string } type IOption = any type OptionsSubComponents = { Option: IOption } const ApiSchemaOptions: FC> & OptionsSubComponents = (props) => { const [open, setOpen] = useState(false) return ( {props.children} ) } ApiSchemaOptions.Option = ApiSchema export default ApiSchemaOptions