/** * @file CollectionBaseOutline * @author Auto Generated by IconGarden */ import { defineComponent } from "vue"; import { IIconProps } from "../interface"; export default defineComponent({ name: "icon-collection-base-outline", props: { size: { type: [Number, String], default: 48, }, color: { type: String, default: "#131212", }, }, setup: (props: IIconProps) => { return () => ( ); }, });