Files
AFFiNE-Mirror/blocksuite/affine/components/src/icons/utils.ts
T
2024-12-20 15:38:06 +08:00

13 lines
259 B
TypeScript

import { html, type TemplateResult } from 'lit';
export function icon(svg: TemplateResult<2>, size = 24) {
return html`<svg
width="${size}"
height="${size}"
viewBox="0 0 24 24"
xmlns="http://www.w3.org/2000/svg"
>
${svg}
</svg>`;
}