30 lines
937 B
JavaScript
30 lines
937 B
JavaScript
'use strict';
|
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
var prefix = 'fas';
|
|
var iconName = 'face-meh-blank';
|
|
var width = 512;
|
|
var height = 512;
|
|
var aliases = ['meh-blank'];
|
|
var unicode = 'f5a4';
|
|
var svgPathData = 'M256 0C114.6 0 0 114.6 0 256s114.6 256 256 256s256-114.6 256-256S397.4 0 256 0zM175.1 240c-17.68 0-31.97-14.25-31.97-32s14.29-32 31.97-32c17.8 0 32.09 14.25 32.09 32S193.8 240 175.1 240zM336 240c-17.8 0-32.09-14.25-32.09-32s14.29-32 32.09-32c17.68 0 31.97 14.25 31.97 32S353.7 240 336 240z';
|
|
|
|
exports.definition = {
|
|
prefix: prefix,
|
|
iconName: iconName,
|
|
icon: [
|
|
width,
|
|
height,
|
|
aliases,
|
|
unicode,
|
|
svgPathData
|
|
]};
|
|
|
|
exports.faFaceMehBlank = 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; |