30 lines
823 B
JavaScript
30 lines
823 B
JavaScript
'use strict';
|
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
var prefix = 'fas';
|
|
var iconName = 'toggle-on';
|
|
var width = 576;
|
|
var height = 512;
|
|
var aliases = [];
|
|
var unicode = 'f205';
|
|
var svgPathData = 'M384 64H192c-106 0-192 86-192 191.1c0 106 85.1 192 192 192h192c105.1 0 192-85.1 192-192C576 150 489.1 64 384 64zM384 352c-53.06 0-96-42.94-96-96s42.94-96 96-96s96 42.94 96 95.1S437.1 352 384 352z';
|
|
|
|
exports.definition = {
|
|
prefix: prefix,
|
|
iconName: iconName,
|
|
icon: [
|
|
width,
|
|
height,
|
|
aliases,
|
|
unicode,
|
|
svgPathData
|
|
]};
|
|
|
|
exports.faToggleOn = 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; |