comic-plus
Version:
<p align="center"> <img width="200px" src="./logo.png"/> </p>
12 lines (10 loc) • 400 B
TypeScript
import { ExtractPropTypes, PropType } from 'vue';
import { ImageFit } from '../../../utils';
export declare const avatarProps: {
readonly src: StringConstructor;
readonly fit: PropType<ImageFit>;
readonly size: NumberConstructor;
readonly shape: PropType<"circle" | "square">;
readonly color: StringConstructor;
};
export type AvatarProps = ExtractPropTypes<typeof avatarProps>;