29 lines
827 B
JavaScript
29 lines
827 B
JavaScript
'use strict';
|
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
var prefix = 'far';
|
|
var iconName = 'scrubber';
|
|
var width = 496;
|
|
var height = 512;
|
|
var ligatures = [];
|
|
var unicode = 'f2f8';
|
|
var svgPathData = 'M248 56c110.5 0 200 89.5 200 200s-89.5 200-200 200S48 366.5 48 256 137.5 56 248 56m0-48C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 184c-35.3 0-64 28.7-64 64s28.7 64 64 64 64-28.7 64-64-28.7-64-64-64z';
|
|
|
|
exports.definition = {
|
|
prefix: prefix,
|
|
iconName: iconName,
|
|
icon: [
|
|
width,
|
|
height,
|
|
ligatures,
|
|
unicode,
|
|
svgPathData
|
|
]};
|
|
|
|
exports.faScrubber = exports.definition;
|
|
exports.prefix = prefix;
|
|
exports.iconName = iconName;
|
|
exports.width = width;
|
|
exports.height = height;
|
|
exports.ligatures = ligatures;
|
|
exports.unicode = unicode;
|
|
exports.svgPathData = svgPathData; |