29 lines
749 B
JavaScript
29 lines
749 B
JavaScript
'use strict';
|
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
var prefix = 'fad';
|
|
var iconName = 'ellipsis-h';
|
|
var width = 512;
|
|
var height = 512;
|
|
var ligatures = [];
|
|
var unicode = 'f141';
|
|
var svgPathData = ['M256 184a72 72 0 1 0 72 72 72 72 0 0 0-72-72z', 'M432 184a72 72 0 1 0 72 72 72 72 0 0 0-72-72zm-352 0a72 72 0 1 0 72 72 72 72 0 0 0-72-72z'];
|
|
|
|
exports.definition = {
|
|
prefix: prefix,
|
|
iconName: iconName,
|
|
icon: [
|
|
width,
|
|
height,
|
|
ligatures,
|
|
unicode,
|
|
svgPathData
|
|
]};
|
|
|
|
exports.faEllipsisH = exports.definition;
|
|
exports.prefix = prefix;
|
|
exports.iconName = iconName;
|
|
exports.width = width;
|
|
exports.height = height;
|
|
exports.ligatures = ligatures;
|
|
exports.unicode = unicode;
|
|
exports.svgPathData = svgPathData; |