import { ref } from "vue";
const Icon = {
props: {
css: {
type: String,
default: 'text-gray-800'
}
}
}
const AddressBookIcon = {
__proto__: Icon,
setup: () => {
console.log(this.props)
},
template: ``
};
const AlignCenterIcon = {
__proto__: Icon,
template: ``
}
const EditIcon = {
__proto__: Icon,
template: ``
}
const TrashBinIcon = {
__proto__: Icon,
template: ``
}
const SearchIcon = {
__proto__: Icon,
template: ``
}
const AdjustmentIcon = {
__proto__: Icon,
template: `
`
}
export {
AddressBookIcon,
AlignCenterIcon,
EditIcon,
TrashBinIcon,
SearchIcon,
AdjustmentIcon
};