Files
web/components/TempDesignSystem/Form/ChoiceCard/Checkbox.tsx
2024-10-08 14:08:55 +02:00

8 lines
187 B
TypeScript

import Card from "./_Card"
import type { CheckboxProps } from "./_Card/card"
export default function CheckboxCard(props: CheckboxProps) {
return <Card {...props} type="checkbox" />
}