Files
WAI_Project_UNIX/uni_modules/cool-ui/components/cl-radio/props.ts
2025-10-27 10:00:50 +08:00

21 lines
432 B
TypeScript

import type { PassThroughProps } from "../../types";
import type { ClIconProps } from "../cl-icon/props";
export type ClRadioPassThrough = {
className?: string;
icon?: ClIconProps;
label?: PassThroughProps;
};
export type ClRadioProps = {
className?: string;
pt?: ClRadioPassThrough;
modelValue?: any;
activeIcon?: string;
inactiveIcon?: string;
showIcon?: boolean;
label?: string;
value?: any;
disabled?: boolean;
};