30 lines
977 B
JavaScript
30 lines
977 B
JavaScript
'use strict';
|
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
var prefix = 'fas';
|
|
var iconName = 'chart-area';
|
|
var width = 512;
|
|
var height = 512;
|
|
var aliases = ['area-chart'];
|
|
var unicode = 'f1fe';
|
|
var svgPathData = 'M480 416H64V63.1C64 46.33 49.67 32 32 32S0 46.33 0 63.1V448c0 17.67 14.33 32 32 32h448C497.7 480 512 465.7 512 448S497.7 416 480 416zM480 236.1c0-7.773-2.828-15.28-7.961-21.12l-70.01-79.68c-9.562-10.88-26.5-10.88-36.06 0l-43.38 49.37l-63.78-80.44c-9.609-12.12-28-12.12-37.61 0L134.9 213.9C130.4 219.5 128 226.6 128 233.8V352h352V236.1z';
|
|
|
|
exports.definition = {
|
|
prefix: prefix,
|
|
iconName: iconName,
|
|
icon: [
|
|
width,
|
|
height,
|
|
aliases,
|
|
unicode,
|
|
svgPathData
|
|
]};
|
|
|
|
exports.faChartArea = exports.definition;
|
|
exports.prefix = prefix;
|
|
exports.iconName = iconName;
|
|
exports.width = width;
|
|
exports.height = height;
|
|
exports.ligatures = aliases;
|
|
exports.unicode = unicode;
|
|
exports.svgPathData = svgPathData;
|
|
exports.aliases = aliases; |