15 lines
265 B
TypeScript
15 lines
265 B
TypeScript
import type { ClIconProps } from "../cl-icon/props";
|
|
|
|
export type ClAvatarPassThrough = {
|
|
className?: string;
|
|
icon?: ClIconProps;
|
|
};
|
|
|
|
export type ClAvatarProps = {
|
|
className?: string;
|
|
pt?: ClAvatarPassThrough;
|
|
src?: string;
|
|
size?: any;
|
|
rounded?: boolean;
|
|
};
|