mirror of
https://github.com/FortAwesome/Font-Awesome.git
synced 2024-11-20 11:14:28 +00:00
37eff7fa00
Co-authored-by: robmadole <robmadole@users.noreply.github.com>
30 lines
958 B
JavaScript
30 lines
958 B
JavaScript
'use strict';
|
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
var prefix = 'fas';
|
|
var iconName = 'sign-hanging';
|
|
var width = 512;
|
|
var height = 512;
|
|
var aliases = ["sign"];
|
|
var unicode = 'f4d9';
|
|
var svgPathData = 'M96 0c17.7 0 32 14.3 32 32l0 32 352 0c17.7 0 32 14.3 32 32s-14.3 32-32 32l-352 0 0 352c0 17.7-14.3 32-32 32s-32-14.3-32-32l0-352-32 0C14.3 128 0 113.7 0 96S14.3 64 32 64l32 0 0-32C64 14.3 78.3 0 96 0zm96 160l256 0c17.7 0 32 14.3 32 32l0 160c0 17.7-14.3 32-32 32l-256 0c-17.7 0-32-14.3-32-32l0-160c0-17.7 14.3-32 32-32z';
|
|
|
|
exports.definition = {
|
|
prefix: prefix,
|
|
iconName: iconName,
|
|
icon: [
|
|
width,
|
|
height,
|
|
aliases,
|
|
unicode,
|
|
svgPathData
|
|
]};
|
|
|
|
exports.faSignHanging = 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; |