JewelryMall/admin/node_modules/element-plus/es/components/icon/src/icon.mjs
2026-02-14 19:29:15 +08:00

20 lines
378 B
JavaScript

import { buildProps, definePropType } from '../../../utils/vue/props/runtime.mjs';
const iconProps = buildProps({
/**
* @description SVG icon size, size x size
*/
size: {
type: definePropType([Number, String])
},
/**
* @description SVG tag's fill attribute
*/
color: {
type: String
}
});
export { iconProps };
//# sourceMappingURL=icon.mjs.map