Files
2025-11-13 10:36:23 +08:00

16 lines
290 B
TypeScript

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