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

8 lines
175 B
TypeScript

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