11 lines
224 B
TypeScript
11 lines
224 B
TypeScript
![]() |
import { useSvgIconRender } from '@sa/hooks';
|
||
|
import SvgIcon from '@/components/custom/svg-icon.vue';
|
||
|
|
||
|
export function useSvgIcon() {
|
||
|
const { SvgIconVNode } = useSvgIconRender(SvgIcon);
|
||
|
|
||
|
return {
|
||
|
SvgIconVNode
|
||
|
};
|
||
|
}
|