16 lines
290 B
TypeScript
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;
|
||
|
|
};
|