小程序初始提交
This commit is contained in:
19
cool-unix/uni_modules/cool-ui/components/cl-switch/props.ts
Normal file
19
cool-unix/uni_modules/cool-ui/components/cl-switch/props.ts
Normal file
@@ -0,0 +1,19 @@
|
||||
import type { PassThroughProps } from "../../types";
|
||||
|
||||
export type ClSwitchPassThrough = {
|
||||
className?: string;
|
||||
track?: PassThroughProps;
|
||||
thumb?: PassThroughProps;
|
||||
label?: PassThroughProps;
|
||||
loading?: PassThroughProps;
|
||||
};
|
||||
|
||||
export type ClSwitchProps = {
|
||||
className?: string;
|
||||
pt?: ClSwitchPassThrough;
|
||||
modelValue?: boolean;
|
||||
disabled?: boolean;
|
||||
loading?: boolean;
|
||||
height?: number;
|
||||
width?: number;
|
||||
};
|
||||
Reference in New Issue
Block a user