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