123456789101112131415161718192021222324252627282930 |
- 'use strict';
- Object.defineProperty(exports, '__esModule', { value: true });
- var prefix = 'fab';
- var iconName = 'unsplash';
- var width = 448;
- var height = 512;
- var aliases = [];
- var unicode = 'e07c';
- var svgPathData = 'M448 230.2V480H0V230.2H141.1V355.1H306.9V230.2zM306.9 32H141.1V156.9H306.9z';
- exports.definition = {
- prefix: prefix,
- iconName: iconName,
- icon: [
- width,
- height,
- aliases,
- unicode,
- svgPathData
- ]};
- exports.faUnsplash = 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;
|