15 lines
283 B
TypeScript
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
|
|
}
|