[[cva]]の提供範囲を最小限にするため、[[VariantProps型]]はrequiredなvariantの型を提供しない。以下のように必ずoptionalとなる。 ```ts export type ButtonVariantProps = VariantProps<typeof buttonVariant>; // type ButtonVariantProps = { // intent?: "primary" | "danger" | null | undefined; // size?: "small" | "medium" | "large" | null | undefined; // disabled?: boolean | null | undefined; // } ```