29 lines
832 B
JavaScript
29 lines
832 B
JavaScript
'use strict';
|
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
var prefix = 'fad';
|
|
var iconName = 'caret-down';
|
|
var width = 320;
|
|
var height = 512;
|
|
var ligatures = [];
|
|
var unicode = 'f0d7';
|
|
var svgPathData = ['M160 168h128.92c17.85 0 26.8 22.48 14.17 35.63L174.17 337.89c-.26.28-.53.54-.8.8A19.41 19.41 0 0 1 160 344z', 'M160 344a19.41 19.41 0 0 1-13.37-5.29c-.27-.26-.54-.52-.8-.8L16.91 203.63C4.28 190.48 13.23 168 31.08 168H160z'];
|
|
|
|
exports.definition = {
|
|
prefix: prefix,
|
|
iconName: iconName,
|
|
icon: [
|
|
width,
|
|
height,
|
|
ligatures,
|
|
unicode,
|
|
svgPathData
|
|
]};
|
|
|
|
exports.faCaretDown = exports.definition;
|
|
exports.prefix = prefix;
|
|
exports.iconName = iconName;
|
|
exports.width = width;
|
|
exports.height = height;
|
|
exports.ligatures = ligatures;
|
|
exports.unicode = unicode;
|
|
exports.svgPathData = svgPathData; |