design-system-simplefi
Version:
Design System for SimpleFi Applications
15 lines • 674 B
JavaScript
export var width = 30; // defined width of SVG
export var height = 11; // defined height of SVG
/*
* unicode character representation in Private Use Area (e000...f8ff)
* check last icon exported from `index.ts` in this folder to find what is the next code
*/
export var unicode = 'e024';
export var svgPathData = // SVG path data
'M20.5114 0.194824L23.8065 2.23829L16.7999 6.57898L11.0568 3.01739L0.410599 9.6197L2.44221 10.8796L11.0568 5.53722L16.7999 9.09881L25.8309 3.49375L29.126 5.53722V0.194824H20.5114Z';
export var graphUp = {
prefix: 'sfi',
iconName: 'graphUp',
icon: [width, height, [], unicode, svgPathData],
};
//# sourceMappingURL=graphUp.js.map