Files
WAI_Project_UNIX/uni_modules/cool-ui/components/cl-badge/props.ts
2025-07-21 16:47:04 +08:00

15 lines
246 B
TypeScript

import type { Type } from "../../types";
export type ClBadgePassThrough = {
className?: string;
};
export type ClBadgeProps = {
className?: string;
pt?: ClBadgePassThrough;
type?: Type;
dot?: boolean;
value?: any;
position?: boolean;
};