Files
web/components/TempDesignSystem/Form/Checkbox/Card/card.ts
2024-10-07 08:12:07 +02:00

15 lines
283 B
TypeScript

import type { IconProps } from "@/types/components/icon"
export interface CheckboxCardProps {
Icon?: (props: IconProps) => JSX.Element
declined?: boolean
list?: {
title: string
}[]
name?: string
saving?: boolean
subtitle?: string
text?: string
title: string
}