1234567891011121314151617181920212223242526272829 |
- 'use strict';
- Object.defineProperty(exports, '__esModule', { value: true });
- var prefix = 'fab';
- var iconName = 'markdown';
- var width = 640;
- var height = 512;
- var ligatures = [];
- var unicode = 'f60f';
- var svgPathData = 'M593.8 59.1H46.2C20.7 59.1 0 79.8 0 105.2v301.5c0 25.5 20.7 46.2 46.2 46.2h547.7c25.5 0 46.2-20.7 46.1-46.1V105.2c0-25.4-20.7-46.1-46.2-46.1zM338.5 360.6H277v-120l-61.5 76.9-61.5-76.9v120H92.3V151.4h61.5l61.5 76.9 61.5-76.9h61.5v209.2zm135.3 3.1L381.5 256H443V151.4h61.5V256H566z';
- exports.definition = {
- prefix: prefix,
- iconName: iconName,
- icon: [
- width,
- height,
- ligatures,
- unicode,
- svgPathData
- ]};
- exports.faMarkdown = exports.definition;
- exports.prefix = prefix;
- exports.iconName = iconName;
- exports.width = width;
- exports.height = height;
- exports.ligatures = ligatures;
- exports.unicode = unicode;
- exports.svgPathData = svgPathData;
|