import clsx from 'clsx' import DOMPurify from 'dompurify' import { h } from 'vue' import { keepAlive } from '../keep-alive' keepAlive(h) type IconProps = { icon?: string | null class?: string onClick?: (event: PointerEvent) => void } export function Icon({ icon, class: className, onClick }: IconProps) { return ( ) } Icon.props = { icon: { type: String, required: false, }, class: { type: String, required: false, }, onClick: { type: Function, required: false, }, }