easyest-xqp
Version:
23 lines (22 loc) • 567 B
TypeScript
import type { ExtractPropTypes } from "vue";
export declare const iconProps: {
/**
* @description SVG icon size, size x size
*/
readonly size: {
readonly type: StringConstructor;
readonly default: "";
};
/**
* @description SVG tag's fill attribute
*/
readonly color: {
readonly type: StringConstructor;
readonly default: "";
};
readonly name: {
readonly type: StringConstructor;
readonly default: "";
};
};
export type IconProps = ExtractPropTypes<typeof iconProps>;