design-system-simplefi
Version:
Design System for SimpleFi Applications
15 lines • 638 B
JavaScript
export var width = 18; // defined width of SVG
export var height = 18; // 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 = 'e026';
export var svgPathData = // SVG path data
'M9.79261 16.1108L17.5398 8.36364L9.79261 0.616477L8.25852 2.15057L13.3807 7.25568H0V9.47159H13.3807L8.25852 14.5852L9.79261 16.1108Z';
export var arrowRight = {
prefix: 'sfi',
iconName: 'arrow-right',
icon: [width, height, [], unicode, svgPathData],
};
//# sourceMappingURL=arrowRight.js.map