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

8 lines
163 B
TypeScript

import Card from "."
import type { RadioProps } from "./card"
export default function RadioCard(props: RadioProps) {
return <Card {...props} type="radio" />
}