UNPKG

@equinor/eds-icons

Version:

Icons from the Equinor Design System

13 lines (12 loc) 294 B
import * as icons from './data'; export type IconName = keyof typeof icons | string; export type IconData = { name: IconName; prefix: string; height: string; width: string; svgPathData: string | Array<string>; sizes?: { small: Omit<IconData, 'sizes'>; }; };