30 lines
918 B
JavaScript
30 lines
918 B
JavaScript
'use strict';
|
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
var prefix = 'fas';
|
|
var iconName = 'brush';
|
|
var width = 384;
|
|
var height = 512;
|
|
var aliases = [];
|
|
var unicode = 'f55d';
|
|
var svgPathData = 'M0 320c0 35.38 28.62 64 64 64h64v64c0 35.38 28.62 64 64 64s64-28.62 64-64v-64h64c35.38 0 64-28.62 64-64V288H0V320zM192 424c13.25 0 24 10.75 24 24s-10.75 24-24 24S168 461.3 168 448S178.8 424 192 424zM352 0h-128l-32 64L160 0H128L96 64L64 0H32C14.38 0 0 14.38 0 32v224h384V32C384 14.38 369.6 0 352 0z';
|
|
|
|
exports.definition = {
|
|
prefix: prefix,
|
|
iconName: iconName,
|
|
icon: [
|
|
width,
|
|
height,
|
|
aliases,
|
|
unicode,
|
|
svgPathData
|
|
]};
|
|
|
|
exports.faBrush = 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; |