UNPKG

@synergy-design-system/assets

Version:
10 lines (9 loc) 331 B
import { defaultIcons } from './default-icons.js'; type IconKeys = keyof typeof defaultIcons; /** * Creates a SVG sprite sheet with the given icons. * @param icons The icon keys to use * @returns String representation of the SVG sprite sheet */ export declare const createSpriteSheet: (icons: IconKeys[]) => string; export {};