30 lines
873 B
JavaScript
30 lines
873 B
JavaScript
'use strict';
|
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
var prefix = 'fas';
|
|
var iconName = 'tenge-sign';
|
|
var width = 384;
|
|
var height = 512;
|
|
var aliases = ['tenge'];
|
|
var unicode = 'f7d7';
|
|
var svgPathData = 'M32 96h320c17.67 0 32-14.31 32-32s-14.33-32-32-32H32C14.33 32 0 46.31 0 64S14.33 96 32 96zM352 160H32C14.33 160 0 174.3 0 192s14.33 32 32 32h128v224c0 17.69 14.33 32 32 32s32-14.31 32-32V224h128c17.67 0 32-14.31 32-32S369.7 160 352 160z';
|
|
|
|
exports.definition = {
|
|
prefix: prefix,
|
|
iconName: iconName,
|
|
icon: [
|
|
width,
|
|
height,
|
|
aliases,
|
|
unicode,
|
|
svgPathData
|
|
]};
|
|
|
|
exports.faTengeSign = 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; |