feat: rename form/card to form/choicecard

This commit is contained in:
Simon Emanuelsson
2024-10-08 11:06:09 +02:00
committed by Pontus Dreij
parent 94a1aa625a
commit ee6a40a553
8 changed files with 21 additions and 23 deletions

View File

@@ -0,0 +1,7 @@
import Card from "./_Card"
import type { RadioProps } from "./_Card/card"
export default function RadioCard(props: RadioProps) {
return <Card {...props} type="radio" />
}