@synergy-design-system/assets
Version:
Assets for the Synergy Design System
10 lines (9 loc) • 331 B
TypeScript
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 {};