30 lines
921 B
JavaScript
30 lines
921 B
JavaScript
'use strict';
|
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
var prefix = 'fas';
|
|
var iconName = 'window-restore';
|
|
var width = 512;
|
|
var height = 512;
|
|
var aliases = [''];
|
|
var unicode = 'f2d2';
|
|
var svgPathData = 'M320 128H64c-35.35 0-64 28.65-64 64v256c0 35.34 28.65 64 64 64h256c35.35 0 64-28.66 64-64v-256C384 159.7 357.7 128 320 128zM320 256H64V192h256V256zM448 .0001H192c-35.35 0-64 28.65-64 63.1V80h64V64h256v256h-16v64l16 .0001c35.35 0 64-28.66 64-64v-256C512 28.65 483.3 .0001 448 .0001z';
|
|
|
|
exports.definition = {
|
|
prefix: prefix,
|
|
iconName: iconName,
|
|
icon: [
|
|
width,
|
|
height,
|
|
aliases,
|
|
unicode,
|
|
svgPathData
|
|
]};
|
|
|
|
exports.faWindowRestore = 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; |