30 lines
988 B
JavaScript
30 lines
988 B
JavaScript
'use strict';
|
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
var prefix = 'fas';
|
|
var iconName = 'paint-roller';
|
|
var width = 512;
|
|
var height = 512;
|
|
var aliases = [];
|
|
var unicode = 'f5aa';
|
|
var svgPathData = 'M416 128V32c0-17.66-14.34-32-32-32H32C14.34 0 0 14.34 0 32v96c0 17.66 14.34 32 32 32h352C401.7 160 416 145.7 416 128zM448 64v128c0 17.66-14.34 32-32 32h-160C220.7 224 192 252.7 192 288v32c-17.66 0-32 14.34-32 32v128c0 17.66 14.34 32 32 32h64c17.66 0 32-14.34 32-32v-128c0-17.66-14.34-32-32-32V288h160c53.03 0 96-42.97 96-96V128C512 92.66 483.3 64 448 64z';
|
|
|
|
exports.definition = {
|
|
prefix: prefix,
|
|
iconName: iconName,
|
|
icon: [
|
|
width,
|
|
height,
|
|
aliases,
|
|
unicode,
|
|
svgPathData
|
|
]};
|
|
|
|
exports.faPaintRoller = 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; |