30 lines
787 B
JavaScript
30 lines
787 B
JavaScript
'use strict';
|
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
var prefix = 'fas';
|
|
var iconName = 'window-maximize';
|
|
var width = 512;
|
|
var height = 512;
|
|
var aliases = [''];
|
|
var unicode = 'f2d0';
|
|
var svgPathData = 'M448 32H64c-35.35 0-64 28.65-64 63.1v320c0 35.35 28.65 64 64 64h384c35.35 0 64-28.65 64-64v-320C512 60.65 483.3 32 448 32zM448 192H64V96h384V192z';
|
|
|
|
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; |