Files
web/components/TempDesignSystem/Form/Card/Checkbox.tsx
Simon Emanuelsson e6b22b81f4 feat: select bed type
2024-10-08 09:58:10 +02:00

8 lines
175 B
TypeScript

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