29 lines
951 B
JavaScript
29 lines
951 B
JavaScript
'use strict';
|
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
var prefix = 'fad';
|
|
var iconName = 'meh-rolling-eyes';
|
|
var width = 512;
|
|
var height = 512;
|
|
var ligatures = [];
|
|
var unicode = 'f5a5';
|
|
var svgPathData = ['M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zM96 224a64 64 0 1 1 64 64 64 64 0 0 1-64-64zm224 176H192c-21.2 0-21.2-32 0-32h128c21.2 0 21.2 32 0 32zm32-112a64 64 0 1 1 64-64 64 64 0 0 1-64 64z', 'M383 168a64 64 0 0 0-62 0 32 32 0 1 0 62 0zm-223-8a63.7 63.7 0 0 0-31 8 32 32 0 1 0 62 0 63.7 63.7 0 0 0-31-8z'];
|
|
|
|
exports.definition = {
|
|
prefix: prefix,
|
|
iconName: iconName,
|
|
icon: [
|
|
width,
|
|
height,
|
|
ligatures,
|
|
unicode,
|
|
svgPathData
|
|
]};
|
|
|
|
exports.faMehRollingEyes = exports.definition;
|
|
exports.prefix = prefix;
|
|
exports.iconName = iconName;
|
|
exports.width = width;
|
|
exports.height = height;
|
|
exports.ligatures = ligatures;
|
|
exports.unicode = unicode;
|
|
exports.svgPathData = svgPathData; |