mirror of
https://github.com/tenrok/Font-Awesome.git
synced 2026-06-23 20:40:33 +03:00
Release 6.5.1 (#20031)
Co-authored-by: robmadole <robmadole@users.noreply.github.com>
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
console.log(`Font Awesome Free 6.5.0 by @fontawesome - https://fontawesome.com
|
||||
console.log(`Font Awesome Free 6.5.1 by @fontawesome - https://fontawesome.com
|
||||
License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
|
||||
Copyright 2023 Fonticons, Inc.
|
||||
`)
|
||||
@@ -6,7 +6,7 @@ var width = 512;
|
||||
var height = 512;
|
||||
var aliases = [];
|
||||
var unicode = 'f1c1';
|
||||
var svgPathData = 'M0 64C0 28.7 28.7 0 64 0H224V128c0 17.7 14.3 32 32 32H384V304H176c-35.3 0-64 28.7-64 64V512H64c-35.3 0-64-28.7-64-64V64zm384 64H256V0L384 128zM318.3 360.8L352 428.2V368c0-8.8 7.2-16 16-16s16 7.2 16 16V496c0 7.4-5.1 13.9-12.3 15.6s-14.7-1.8-18-8.4L320 435.8V496c0 8.8-7.2 16-16 16s-16-7.2-16-16V368c0-7.4 5.1-13.9 12.3-15.6s14.7 1.8 18 8.4zM176 352h32c30.9 0 56 25.1 56 56s-25.1 56-56 56H192v32c0 8.8-7.2 16-16 16s-16-7.2-16-16V448 368c0-8.8 7.2-16 16-16zm32 80c13.3 0 24-10.7 24-24s-10.7-24-24-24H192v48h16zm208-40c0-22.1 17.9-40 40-40h16c22.1 0 40 17.9 40 40v8c0 8.8-7.2 16-16 16s-16-7.2-16-16v-8c0-4.4-3.6-8-8-8H456c-4.4 0-8 3.6-8 8v80c0 4.4 3.6 8 8 8h16c4.4 0 8-3.6 8-8v-8c-8.8 0-16-7.2-16-16s7.2-16 16-16h16c8.8 0 16 7.2 16 16v24c0 22.1-17.9 40-40 40H456c-22.1 0-40-17.9-40-40V392z';
|
||||
var svgPathData = 'M0 64C0 28.7 28.7 0 64 0L224 0l0 128c0 17.7 14.3 32 32 32l128 0 0 144-208 0c-35.3 0-64 28.7-64 64l0 144-48 0c-35.3 0-64-28.7-64-64L0 64zm384 64l-128 0L256 0 384 128zM176 352l32 0c30.9 0 56 25.1 56 56s-25.1 56-56 56l-16 0 0 32c0 8.8-7.2 16-16 16s-16-7.2-16-16l0-48 0-80c0-8.8 7.2-16 16-16zm32 80c13.3 0 24-10.7 24-24s-10.7-24-24-24l-16 0 0 48 16 0zm96-80l32 0c26.5 0 48 21.5 48 48l0 64c0 26.5-21.5 48-48 48l-32 0c-8.8 0-16-7.2-16-16l0-128c0-8.8 7.2-16 16-16zm32 128c8.8 0 16-7.2 16-16l0-64c0-8.8-7.2-16-16-16l-16 0 0 96 16 0zm80-112c0-8.8 7.2-16 16-16l48 0c8.8 0 16 7.2 16 16s-7.2 16-16 16l-32 0 0 32 32 0c8.8 0 16 7.2 16 16s-7.2 16-16 16l-32 0 0 48c0 8.8-7.2 16-16 16s-16-7.2-16-16l0-64 0-64z';
|
||||
|
||||
exports.definition = {
|
||||
prefix: prefix,
|
||||
|
||||
@@ -0,0 +1,11 @@
|
||||
import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types";
|
||||
export const definition: IconDefinition;
|
||||
export const faTShirt: IconDefinition;
|
||||
export const prefix: IconPrefix;
|
||||
export const iconName: IconName;
|
||||
export const width: number;
|
||||
export const height: number;
|
||||
export const ligatures: (string | number)[];
|
||||
export const unicode: string;
|
||||
export const svgPathData: string;
|
||||
export const aliases: (string | number)[];
|
||||
@@ -0,0 +1,23 @@
|
||||
'use strict';
|
||||
Object.defineProperty(exports, '__esModule', { value: true });
|
||||
var source = require('./faShirt');
|
||||
exports.definition = {
|
||||
prefix: source.prefix,
|
||||
iconName: source.iconName,
|
||||
icon: [
|
||||
source.width,
|
||||
source.height,
|
||||
source.aliases,
|
||||
source.unicode,
|
||||
source.svgPathData
|
||||
]};
|
||||
|
||||
exports.faTShirt = exports.definition;
|
||||
exports.prefix = source.prefix;
|
||||
exports.iconName = source.iconName;
|
||||
exports.width = source.width;
|
||||
exports.height = source.height;
|
||||
exports.ligatures = source.aliases;
|
||||
exports.unicode = source.unicode;
|
||||
exports.svgPathData = source.svgPathData;
|
||||
exports.aliases = source.aliases;
|
||||
@@ -1,5 +1,5 @@
|
||||
/*!
|
||||
* Font Awesome Free 6.5.0 by @fontawesome - https://fontawesome.com
|
||||
* Font Awesome Free 6.5.1 by @fontawesome - https://fontawesome.com
|
||||
* License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
|
||||
* Copyright 2023 Fonticons, Inc.
|
||||
*/
|
||||
@@ -4223,7 +4223,7 @@
|
||||
var faFilePdf = {
|
||||
prefix: 'fas',
|
||||
iconName: 'file-pdf',
|
||||
icon: [512, 512, [], "f1c1", "M0 64C0 28.7 28.7 0 64 0H224V128c0 17.7 14.3 32 32 32H384V304H176c-35.3 0-64 28.7-64 64V512H64c-35.3 0-64-28.7-64-64V64zm384 64H256V0L384 128zM318.3 360.8L352 428.2V368c0-8.8 7.2-16 16-16s16 7.2 16 16V496c0 7.4-5.1 13.9-12.3 15.6s-14.7-1.8-18-8.4L320 435.8V496c0 8.8-7.2 16-16 16s-16-7.2-16-16V368c0-7.4 5.1-13.9 12.3-15.6s14.7 1.8 18 8.4zM176 352h32c30.9 0 56 25.1 56 56s-25.1 56-56 56H192v32c0 8.8-7.2 16-16 16s-16-7.2-16-16V448 368c0-8.8 7.2-16 16-16zm32 80c13.3 0 24-10.7 24-24s-10.7-24-24-24H192v48h16zm208-40c0-22.1 17.9-40 40-40h16c22.1 0 40 17.9 40 40v8c0 8.8-7.2 16-16 16s-16-7.2-16-16v-8c0-4.4-3.6-8-8-8H456c-4.4 0-8 3.6-8 8v80c0 4.4 3.6 8 8 8h16c4.4 0 8-3.6 8-8v-8c-8.8 0-16-7.2-16-16s7.2-16 16-16h16c8.8 0 16 7.2 16 16v24c0 22.1-17.9 40-40 40H456c-22.1 0-40-17.9-40-40V392z"]
|
||||
icon: [512, 512, [], "f1c1", "M0 64C0 28.7 28.7 0 64 0L224 0l0 128c0 17.7 14.3 32 32 32l128 0 0 144-208 0c-35.3 0-64 28.7-64 64l0 144-48 0c-35.3 0-64-28.7-64-64L0 64zm384 64l-128 0L256 0 384 128zM176 352l32 0c30.9 0 56 25.1 56 56s-25.1 56-56 56l-16 0 0 32c0 8.8-7.2 16-16 16s-16-7.2-16-16l0-48 0-80c0-8.8 7.2-16 16-16zm32 80c13.3 0 24-10.7 24-24s-10.7-24-24-24l-16 0 0 48 16 0zm96-80l32 0c26.5 0 48 21.5 48 48l0 64c0 26.5-21.5 48-48 48l-32 0c-8.8 0-16-7.2-16-16l0-128c0-8.8 7.2-16 16-16zm32 128c8.8 0 16-7.2 16-16l0-64c0-8.8-7.2-16-16-16l-16 0 0 96 16 0zm80-112c0-8.8 7.2-16 16-16l48 0c8.8 0 16 7.2 16 16s-7.2 16-16 16l-32 0 0 32 32 0c8.8 0 16 7.2 16 16s-7.2 16-16 16l-32 0 0 48c0 8.8-7.2 16-16 16s-16-7.2-16-16l0-64 0-64z"]
|
||||
};
|
||||
var faBookBible = {
|
||||
prefix: 'fas',
|
||||
|
||||
@@ -4212,7 +4212,7 @@ var faTh = faTableCells;
|
||||
var faFilePdf = {
|
||||
prefix: 'fas',
|
||||
iconName: 'file-pdf',
|
||||
icon: [512, 512, [], "f1c1", "M0 64C0 28.7 28.7 0 64 0H224V128c0 17.7 14.3 32 32 32H384V304H176c-35.3 0-64 28.7-64 64V512H64c-35.3 0-64-28.7-64-64V64zm384 64H256V0L384 128zM318.3 360.8L352 428.2V368c0-8.8 7.2-16 16-16s16 7.2 16 16V496c0 7.4-5.1 13.9-12.3 15.6s-14.7-1.8-18-8.4L320 435.8V496c0 8.8-7.2 16-16 16s-16-7.2-16-16V368c0-7.4 5.1-13.9 12.3-15.6s14.7 1.8 18 8.4zM176 352h32c30.9 0 56 25.1 56 56s-25.1 56-56 56H192v32c0 8.8-7.2 16-16 16s-16-7.2-16-16V448 368c0-8.8 7.2-16 16-16zm32 80c13.3 0 24-10.7 24-24s-10.7-24-24-24H192v48h16zm208-40c0-22.1 17.9-40 40-40h16c22.1 0 40 17.9 40 40v8c0 8.8-7.2 16-16 16s-16-7.2-16-16v-8c0-4.4-3.6-8-8-8H456c-4.4 0-8 3.6-8 8v80c0 4.4 3.6 8 8 8h16c4.4 0 8-3.6 8-8v-8c-8.8 0-16-7.2-16-16s7.2-16 16-16h16c8.8 0 16 7.2 16 16v24c0 22.1-17.9 40-40 40H456c-22.1 0-40-17.9-40-40V392z"]
|
||||
icon: [512, 512, [], "f1c1", "M0 64C0 28.7 28.7 0 64 0L224 0l0 128c0 17.7 14.3 32 32 32l128 0 0 144-208 0c-35.3 0-64 28.7-64 64l0 144-48 0c-35.3 0-64-28.7-64-64L0 64zm384 64l-128 0L256 0 384 128zM176 352l32 0c30.9 0 56 25.1 56 56s-25.1 56-56 56l-16 0 0 32c0 8.8-7.2 16-16 16s-16-7.2-16-16l0-48 0-80c0-8.8 7.2-16 16-16zm32 80c13.3 0 24-10.7 24-24s-10.7-24-24-24l-16 0 0 48 16 0zm96-80l32 0c26.5 0 48 21.5 48 48l0 64c0 26.5-21.5 48-48 48l-32 0c-8.8 0-16-7.2-16-16l0-128c0-8.8 7.2-16 16-16zm32 128c8.8 0 16-7.2 16-16l0-64c0-8.8-7.2-16-16-16l-16 0 0 96 16 0zm80-112c0-8.8 7.2-16 16-16l48 0c8.8 0 16 7.2 16 16s-7.2 16-16 16l-32 0 0 32 32 0c8.8 0 16 7.2 16 16s-7.2 16-16 16l-32 0 0 48c0 8.8-7.2 16-16 16s-16-7.2-16-16l0-64 0-64z"]
|
||||
};
|
||||
var faBookBible = {
|
||||
prefix: 'fas',
|
||||
|
||||
@@ -21,9 +21,9 @@
|
||||
"node": ">=6"
|
||||
},
|
||||
"dependencies": {
|
||||
"@fortawesome/fontawesome-common-types": "6.5.0"
|
||||
"@fortawesome/fontawesome-common-types": "6.5.1"
|
||||
},
|
||||
"version": "6.5.0",
|
||||
"version": "6.5.1",
|
||||
"name": "@fortawesome/free-solid-svg-icons",
|
||||
"main": "index.js",
|
||||
"module": "index.mjs",
|
||||
|
||||
Reference in New Issue
Block a user