29 lines
896 B
JavaScript
29 lines
896 B
JavaScript
'use strict';
|
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
var prefix = 'fad';
|
|
var iconName = 'fast-forward';
|
|
var width = 512;
|
|
var height = 512;
|
|
var ligatures = [];
|
|
var unicode = 'f050';
|
|
var svgPathData = ['M512 76v360a12 12 0 0 1-12 12h-40a12 12 0 0 1-12-12V76a12 12 0 0 1 12-12h40a12 12 0 0 1 12 12z', 'M416 313.31l-139.5 127.3c-20.6 17.2-52.5 2.8-52.5-24.6v-131.9L52.5 440.61C31.9 457.81 0 443.41 0 416V96c0-27.4 31.9-41.7 52.5-24.6L224 226.81V96c0-27.4 31.9-41.7 52.5-24.6L416 197.81z'];
|
|
|
|
exports.definition = {
|
|
prefix: prefix,
|
|
iconName: iconName,
|
|
icon: [
|
|
width,
|
|
height,
|
|
ligatures,
|
|
unicode,
|
|
svgPathData
|
|
]};
|
|
|
|
exports.faFastForward = exports.definition;
|
|
exports.prefix = prefix;
|
|
exports.iconName = iconName;
|
|
exports.width = width;
|
|
exports.height = height;
|
|
exports.ligatures = ligatures;
|
|
exports.unicode = unicode;
|
|
exports.svgPathData = svgPathData; |