30 lines
829 B
JavaScript
30 lines
829 B
JavaScript
'use strict';
|
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
var prefix = 'far';
|
|
var iconName = 'window-maximize';
|
|
var width = 512;
|
|
var height = 512;
|
|
var aliases = [''];
|
|
var unicode = 'f2d0';
|
|
var svgPathData = 'M0 96v320c0 35.35 28.65 64 64 64h384c35.35 0 64-28.65 64-64v-320c0-35.35-28.65-63.1-64-63.1H64C28.65 32 0 60.65 0 96zM48 224h416v192c0 8.824-7.178 16-16 16H64c-8.822 0-16-7.176-16-16V224z';
|
|
|
|
exports.definition = {
|
|
prefix: prefix,
|
|
iconName: iconName,
|
|
icon: [
|
|
width,
|
|
height,
|
|
aliases,
|
|
unicode,
|
|
svgPathData
|
|
]};
|
|
|
|
exports.faWindowMaximize = 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; |