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