import { FC, PropsWithChildren } from 'react' import styles from './Collapsible.module.css' import cx from 'classnames' import typography from '../../../styles/typography.module.css' interface Props { id: string className?: string } export const Collapsible: FC> = ({ id, className, children }) => { return (
{/* eslint-disable-next-line jsx-a11y/label-has-associated-control */}
) }