Skip to content

Commit

Permalink
[icons] - fixed #121 (updated Bootstrap Icons to v1.2.0 ) (#123)
Browse files Browse the repository at this point in the history
  • Loading branch information
avmaisak authored Dec 12, 2020
1 parent d3e8926 commit 60f208a
Show file tree
Hide file tree
Showing 1,212 changed files with 2,165 additions and 1,267 deletions.
4 changes: 4 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,3 +45,7 @@
* [icons] - fixed #57 (Added enums for icons) (thank you, @tayambamwanza for contributing)
* [icons] - fixed #65
* [readme] - minor Readme impovements (thank you, @tayambamwanza for contributing)

## v.1.2.4 (12.12.2020)

* [icons] - fixed #121 (updated Bootstrap Icons to v1.2.0 )
302 changes: 211 additions & 91 deletions package-lock.json

Large diffs are not rendered by default.

34 changes: 17 additions & 17 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ngx-bootstrap-icons-demo",
"version": "1.2.3",
"version": "1.2.4",
"homepage": "https://avmaisak.github.io/ngx-bootstrap-icons/",
"scripts": {
"ng": "./node_modules/@angular/cli/bin/ng",
Expand All @@ -18,19 +18,19 @@
},
"private": true,
"dependencies": {
"@angular/animations": "11.0.2",
"@angular/common": "11.0.2",
"@angular/compiler": "11.0.2",
"@angular/core": "11.0.2",
"@angular/forms": "11.0.2",
"@angular/localize": "^11.0.2",
"@angular/platform-browser": "11.0.2",
"@angular/platform-browser-dynamic": "11.0.2",
"@angular/router": "11.0.2",
"@angular/animations": "11.0.4",
"@angular/common": "11.0.4",
"@angular/compiler": "11.0.4",
"@angular/core": "11.0.4",
"@angular/forms": "11.0.4",
"@angular/localize": "^11.0.4",
"@angular/platform-browser": "11.0.4",
"@angular/platform-browser-dynamic": "11.0.4",
"@angular/router": "11.0.4",
"angular-cli-ghpages": "^0.6.2",
"bootstrap": "^4.5.3",
"lodash": "^4.17.20",
"ngx-bootstrap-icons": "1.2.3",
"ngx-bootstrap-icons": "1.2.4",
"ngx-clipboard": "^14.0.1",
"rxjs": "6.6.3",
"tslib": "2.0.3",
Expand All @@ -40,20 +40,20 @@
"@angular-devkit/build-angular": "0.1100.4",
"@angular-devkit/build-ng-packagr": "0.1002.0",
"@angular-eslint/builder": "0.8.0-beta.5",
"@angular-eslint/eslint-plugin": "0.8.0-beta.3",
"@angular-eslint/eslint-plugin": "0.8.0-beta.5",
"@angular-eslint/eslint-plugin-template": "0.8.0-beta.5",
"@angular-eslint/schematics": "^0.8.0-beta.3",
"@angular-eslint/schematics": "^0.8.0-beta.5",
"@angular-eslint/template-parser": "0.8.0-beta.5",
"eslint-plugin-simple-import-sort": "^7.0.0",
"@angular/cli": "11.0.4",
"@angular/compiler-cli": "11.0.2",
"@angular/compiler-cli": "11.0.4",
"@angular/language-service": "11.0.4",
"@types/jasmine": "3.6.2",
"@types/jasminewd2": "2.0.8",
"@types/node": "14.14.12",
"@typescript-eslint/eslint-plugin": "4.9.0",
"@typescript-eslint/eslint-plugin": "4.9.1",
"@typescript-eslint/parser": "4.9.1",
"bootstrap-icons": "1.1.0",
"bootstrap-icons": "1.2.0",
"cli-color": "^2.0.0",
"codelyzer": "6.0.1",
"eslint": "^7.15.0",
Expand All @@ -70,7 +70,7 @@
"karma-jasmine-html-reporter": "1.5.4",
"ng-packagr": "11.0.3",
"protractor": "7.0.0",
"ts-node": "9.1.0",
"ts-node": "9.1.1",
"tsickle": "0.39.1",
"tslint": "6.1.3",
"typescript": "4.0.5",
Expand Down
2 changes: 1 addition & 1 deletion projects/ngx-bootstrap-icons-lib/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ngx-bootstrap-icons",
"version": "1.2.3",
"version": "1.2.4",
"description": "Bootstrap Icons components library for your Angular Applications",
"homepage": "https://avmaisak.github.io/ngx-bootstrap-icons/",
"repository": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,8 @@ export class NgxBootstrapIconsLibComponent implements OnChanges {
let svg = icons[uppercamelcase(changes.name.currentValue)] || '';

if (!svg) console.warn(`Icon not found: ${changes.name.currentValue}\n`);
if (this.width && svg.includes('width')) svg = svg.replace('width="1em"', `width="${this.width}"`);
if (this.height && svg.includes('height')) svg = svg.replace('height="1em"', `height="${this.height}"`);
if (this.width && svg.includes('width')) svg = svg.replace('width="16"', `width="${this.width}"`);
if (this.height && svg.includes('height')) svg = svg.replace('height="16"', `height="${this.height}"`);

this.elem.nativeElement.innerHTML = svg;
this.changeDetector.markForCheck();
Expand Down
100 changes: 100 additions & 0 deletions projects/ngx-bootstrap-icons-lib/src/lib/enums/icon-names.enum.ts
Original file line number Diff line number Diff line change
Expand Up @@ -914,6 +914,12 @@ export enum IconNamesEnum {
Dice6Fill = 'dice-6-fill',
/** https://icons.getbootstrap.com/icons/dice-6 */
Dice6 = 'dice-6',
/** https://icons.getbootstrap.com/icons/disc-fill */
DiscFill = 'disc-fill',
/** https://icons.getbootstrap.com/icons/disc */
Disc = 'disc',
/** https://icons.getbootstrap.com/icons/discord */
Discord = 'discord',
/** https://icons.getbootstrap.com/icons/display-fill */
DisplayFill = 'display-fill',
/** https://icons.getbootstrap.com/icons/display */
Expand Down Expand Up @@ -1042,6 +1048,8 @@ export enum IconNamesEnum {
Eye = 'eye',
/** https://icons.getbootstrap.com/icons/eyeglasses */
Eyeglasses = 'eyeglasses',
/** https://icons.getbootstrap.com/icons/facebook */
Facebook = 'facebook',
/** https://icons.getbootstrap.com/icons/file-arrow-down-fill */
FileArrowDownFill = 'file-arrow-down-fill',
/** https://icons.getbootstrap.com/icons/file-arrow-down */
Expand Down Expand Up @@ -1378,10 +1386,14 @@ export enum IconNamesEnum {
GiftFill = 'gift-fill',
/** https://icons.getbootstrap.com/icons/gift */
Gift = 'gift',
/** https://icons.getbootstrap.com/icons/github */
Github = 'github',
/** https://icons.getbootstrap.com/icons/globe */
Globe = 'globe',
/** https://icons.getbootstrap.com/icons/globe2 */
Globe2 = 'globe2',
/** https://icons.getbootstrap.com/icons/google */
Google = 'google',
/** https://icons.getbootstrap.com/icons/graph-down */
GraphDown = 'graph-down',
/** https://icons.getbootstrap.com/icons/graph-up */
Expand Down Expand Up @@ -1512,6 +1524,8 @@ export enum IconNamesEnum {
InputCursorText = 'input-cursor-text',
/** https://icons.getbootstrap.com/icons/input-cursor */
InputCursor = 'input-cursor',
/** https://icons.getbootstrap.com/icons/instagram */
Instagram = 'instagram',
/** https://icons.getbootstrap.com/icons/intersect */
Intersect = 'intersect',
/** https://icons.getbootstrap.com/icons/journal-album */
Expand Down Expand Up @@ -1612,6 +1626,8 @@ export enum IconNamesEnum {
Link45deg = 'link-45deg',
/** https://icons.getbootstrap.com/icons/link */
Link = 'link',
/** https://icons.getbootstrap.com/icons/linkedin */
Linkedin = 'linkedin',
/** https://icons.getbootstrap.com/icons/list-check */
ListCheck = 'list-check',
/** https://icons.getbootstrap.com/icons/list-nested */
Expand Down Expand Up @@ -1736,6 +1752,14 @@ export enum IconNamesEnum {
PatchQuestionFll = 'patch-question-fll',
/** https://icons.getbootstrap.com/icons/patch-question */
PatchQuestion = 'patch-question',
/** https://icons.getbootstrap.com/icons/pause-btn-fill */
PauseBtnFill = 'pause-btn-fill',
/** https://icons.getbootstrap.com/icons/pause-btn */
PauseBtn = 'pause-btn',
/** https://icons.getbootstrap.com/icons/pause-circle-fill */
PauseCircleFill = 'pause-circle-fill',
/** https://icons.getbootstrap.com/icons/pause-circle */
PauseCircle = 'pause-circle',
/** https://icons.getbootstrap.com/icons/pause-fill */
PauseFill = 'pause-fill',
/** https://icons.getbootstrap.com/icons/pause */
Expand Down Expand Up @@ -1816,6 +1840,14 @@ export enum IconNamesEnum {
PipFill = 'pip-fill',
/** https://icons.getbootstrap.com/icons/pip */
Pip = 'pip',
/** https://icons.getbootstrap.com/icons/play-btn-fill */
PlayBtnFill = 'play-btn-fill',
/** https://icons.getbootstrap.com/icons/play-btn */
PlayBtn = 'play-btn',
/** https://icons.getbootstrap.com/icons/play-circle-fill */
PlayCircleFill = 'play-circle-fill',
/** https://icons.getbootstrap.com/icons/play-circle */
PlayCircle = 'play-circle',
/** https://icons.getbootstrap.com/icons/play-fill */
PlayFill = 'play-fill',
/** https://icons.getbootstrap.com/icons/play */
Expand Down Expand Up @@ -1876,6 +1908,22 @@ export enum IconNamesEnum {
Reception3 = 'reception-3',
/** https://icons.getbootstrap.com/icons/reception-4 */
Reception4 = 'reception-4',
/** https://icons.getbootstrap.com/icons/record-btn-fill */
RecordBtnFill = 'record-btn-fill',
/** https://icons.getbootstrap.com/icons/record-btn */
RecordBtn = 'record-btn',
/** https://icons.getbootstrap.com/icons/record-circle-fill */
RecordCircleFill = 'record-circle-fill',
/** https://icons.getbootstrap.com/icons/record-circle */
RecordCircle = 'record-circle',
/** https://icons.getbootstrap.com/icons/record-fill */
RecordFill = 'record-fill',
/** https://icons.getbootstrap.com/icons/record */
Record = 'record',
/** https://icons.getbootstrap.com/icons/record2-fill */
Record2Fill = 'record2-fill',
/** https://icons.getbootstrap.com/icons/record2 */
Record2 = 'record2',
/** https://icons.getbootstrap.com/icons/reply-all-fill */
ReplyAllFill = 'reply-all-fill',
/** https://icons.getbootstrap.com/icons/reply-all */
Expand Down Expand Up @@ -1962,22 +2010,56 @@ export enum IconNamesEnum {
SimFill = 'sim-fill',
/** https://icons.getbootstrap.com/icons/sim */
Sim = 'sim',
/** https://icons.getbootstrap.com/icons/skip-backward-btn-fill */
SkipBackwardBtnFill = 'skip-backward-btn-fill',
/** https://icons.getbootstrap.com/icons/skip-backward-btn */
SkipBackwardBtn = 'skip-backward-btn',
/** https://icons.getbootstrap.com/icons/skip-backward-circle-fill */
SkipBackwardCircleFill = 'skip-backward-circle-fill',
/** https://icons.getbootstrap.com/icons/skip-backward-circle */
SkipBackwardCircle = 'skip-backward-circle',
/** https://icons.getbootstrap.com/icons/skip-backward-fill */
SkipBackwardFill = 'skip-backward-fill',
/** https://icons.getbootstrap.com/icons/skip-backward */
SkipBackward = 'skip-backward',
/** https://icons.getbootstrap.com/icons/skip-end-btn-fill */
SkipEndBtnFill = 'skip-end-btn-fill',
/** https://icons.getbootstrap.com/icons/skip-end-btn */
SkipEndBtn = 'skip-end-btn',
/** https://icons.getbootstrap.com/icons/skip-end-circle-fill */
SkipEndCircleFill = 'skip-end-circle-fill',
/** https://icons.getbootstrap.com/icons/skip-end-circle */
SkipEndCircle = 'skip-end-circle',
/** https://icons.getbootstrap.com/icons/skip-end-fill */
SkipEndFill = 'skip-end-fill',
/** https://icons.getbootstrap.com/icons/skip-end */
SkipEnd = 'skip-end',
/** https://icons.getbootstrap.com/icons/skip-forward-btn-fill */
SkipForwardBtnFill = 'skip-forward-btn-fill',
/** https://icons.getbootstrap.com/icons/skip-forward-btn */
SkipForwardBtn = 'skip-forward-btn',
/** https://icons.getbootstrap.com/icons/skip-forward-circle-fill */
SkipForwardCircleFill = 'skip-forward-circle-fill',
/** https://icons.getbootstrap.com/icons/skip-forward-circle */
SkipForwardCircle = 'skip-forward-circle',
/** https://icons.getbootstrap.com/icons/skip-forward-fill */
SkipForwardFill = 'skip-forward-fill',
/** https://icons.getbootstrap.com/icons/skip-forward */
SkipForward = 'skip-forward',
/** https://icons.getbootstrap.com/icons/skip-start-btn-fill */
SkipStartBtnFill = 'skip-start-btn-fill',
/** https://icons.getbootstrap.com/icons/skip-start-btn */
SkipStartBtn = 'skip-start-btn',
/** https://icons.getbootstrap.com/icons/skip-start-circle-fill */
SkipStartCircleFill = 'skip-start-circle-fill',
/** https://icons.getbootstrap.com/icons/skip-start-circle */
SkipStartCircle = 'skip-start-circle',
/** https://icons.getbootstrap.com/icons/skip-start-fill */
SkipStartFill = 'skip-start-fill',
/** https://icons.getbootstrap.com/icons/skip-start */
SkipStart = 'skip-start',
/** https://icons.getbootstrap.com/icons/slack */
Slack = 'slack',
/** https://icons.getbootstrap.com/icons/slash-circle-fill */
SlashCircleFill = 'slash-circle-fill',
/** https://icons.getbootstrap.com/icons/slash-circle */
Expand Down Expand Up @@ -2044,6 +2126,14 @@ export enum IconNamesEnum {
StickyFill = 'sticky-fill',
/** https://icons.getbootstrap.com/icons/sticky */
Sticky = 'sticky',
/** https://icons.getbootstrap.com/icons/stop-btn-fill */
StopBtnFill = 'stop-btn-fill',
/** https://icons.getbootstrap.com/icons/stop-btn */
StopBtn = 'stop-btn',
/** https://icons.getbootstrap.com/icons/stop-circle-fill */
StopCircleFill = 'stop-circle-fill',
/** https://icons.getbootstrap.com/icons/stop-circle */
StopCircle = 'stop-circle',
/** https://icons.getbootstrap.com/icons/stop-fill */
StopFill = 'stop-fill',
/** https://icons.getbootstrap.com/icons/stop */
Expand Down Expand Up @@ -2198,6 +2288,10 @@ export enum IconNamesEnum {
TvFill = 'tv-fill',
/** https://icons.getbootstrap.com/icons/tv */
Tv = 'tv',
/** https://icons.getbootstrap.com/icons/twitch */
Twitch = 'twitch',
/** https://icons.getbootstrap.com/icons/twitter */
Twitter = 'twitter',
/** https://icons.getbootstrap.com/icons/type-bold */
TypeBold = 'type-bold',
/** https://icons.getbootstrap.com/icons/type-h1 */
Expand Down Expand Up @@ -2240,6 +2334,10 @@ export enum IconNamesEnum {
ViewList = 'view-list',
/** https://icons.getbootstrap.com/icons/view-stacked */
ViewStacked = 'view-stacked',
/** https://icons.getbootstrap.com/icons/vinyl-fill */
VinylFill = 'vinyl-fill',
/** https://icons.getbootstrap.com/icons/vinyl */
Vinyl = 'vinyl',
/** https://icons.getbootstrap.com/icons/voicemail */
Voicemail = 'voicemail',
/** https://icons.getbootstrap.com/icons/volume-down-fill */
Expand Down Expand Up @@ -2298,6 +2396,8 @@ export enum IconNamesEnum {
XSquare = 'x-square',
/** https://icons.getbootstrap.com/icons/x */
X = 'x',
/** https://icons.getbootstrap.com/icons/youtube */
Youtube = 'youtube',
/** https://icons.getbootstrap.com/icons/zoom-in */
ZoomIn = 'zoom-in',
/** https://icons.getbootstrap.com/icons/zoom-out */
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@
*/

/** eslint-disable max-len */
export const AlarmFill = `<svg width="1em" height="1em" viewBox="0 0 16 16" class="bi bi-alarm-fill" fill="currentColor" xmlns="http://www.w3.org/2000/svg">
export const AlarmFill = `<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-alarm-fill" viewBox="0 0 16 16">
<path fill-rule="evenodd" d="M6 .5a.5.5 0 0 1 .5-.5h3a.5.5 0 0 1 0 1H9v1.07a7.001 7.001 0 0 1 3.274 12.474l.601.602a.5.5 0 0 1-.707.708l-.746-.746A6.97 6.97 0 0 1 8 16a6.97 6.97 0 0 1-3.422-.892l-.746.746a.5.5 0 0 1-.707-.708l.602-.602A7.001 7.001 0 0 1 7 2.07V1h-.5A.5.5 0 0 1 6 .5zM.86 5.387A2.5 2.5 0 1 1 4.387 1.86 8.035 8.035 0 0 0 .86 5.387zM11.613 1.86a2.5 2.5 0 1 1 3.527 3.527 8.035 8.035 0 0 0-3.527-3.527zM8.5 5.5a.5.5 0 0 0-1 0v3.362l-1.429 2.38a.5.5 0 1 0 .858.515l1.5-2.5A.5.5 0 0 0 8.5 9V5.5z"/>
</svg>`;
2 changes: 1 addition & 1 deletion projects/ngx-bootstrap-icons-lib/src/lib/icons/alarm.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@
*/

/** eslint-disable max-len */
export const Alarm = `<svg width="1em" height="1em" viewBox="0 0 16 16" class="bi bi-alarm" fill="currentColor" xmlns="http://www.w3.org/2000/svg">
export const Alarm = `<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-alarm" viewBox="0 0 16 16">
<path fill-rule="evenodd" d="M6.5 0a.5.5 0 0 0 0 1H7v1.07a7.001 7.001 0 0 0-3.273 12.474l-.602.602a.5.5 0 0 0 .707.708l.746-.746A6.97 6.97 0 0 0 8 16a6.97 6.97 0 0 0 3.422-.892l.746.746a.5.5 0 0 0 .707-.708l-.601-.602A7.001 7.001 0 0 0 9 2.07V1h.5a.5.5 0 0 0 0-1h-3zm1.038 3.018a6.093 6.093 0 0 1 .924 0 6 6 0 1 1-.924 0zM8.5 5.5a.5.5 0 0 0-1 0v3.362l-1.429 2.38a.5.5 0 1 0 .858.515l1.5-2.5A.5.5 0 0 0 8.5 9V5.5zM0 3.5c0 .753.333 1.429.86 1.887A8.035 8.035 0 0 1 4.387 1.86 2.5 2.5 0 0 0 0 3.5zM13.5 1c-.753 0-1.429.333-1.887.86a8.035 8.035 0 0 1 3.527 3.527A2.5 2.5 0 0 0 13.5 1z"/>
</svg>`;
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
*/

/** eslint-disable max-len */
export const AlignBottom = `<svg width="1em" height="1em" viewBox="0 0 16 16" class="bi bi-align-bottom" fill="currentColor" xmlns="http://www.w3.org/2000/svg">
export const AlignBottom = `<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-align-bottom" viewBox="0 0 16 16">
<path d="M6 2a1 1 0 0 1 1-1h2a1 1 0 0 1 1 1v10a1 1 0 0 1-1 1H7a1 1 0 0 1-1-1V2z"/>
<path fill-rule="evenodd" d="M1 14.5a.5.5 0 0 1 .5-.5h13a.5.5 0 0 1 0 1h-13a.5.5 0 0 1-.5-.5z"/>
</svg>`;
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@
*/

/** eslint-disable max-len */
export const AlignCenter = `<svg width="1em" height="1em" viewBox="0 0 16 16" class="bi bi-align-center" fill="currentColor" xmlns="http://www.w3.org/2000/svg">
export const AlignCenter = `<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-align-center" viewBox="0 0 16 16">
<path d="M8 1a.5.5 0 0 1 .5.5V6h-1V1.5A.5.5 0 0 1 8 1zm0 14a.5.5 0 0 1-.5-.5V10h1v4.5a.5.5 0 0 1-.5.5zM2 7a1 1 0 0 1 1-1h10a1 1 0 0 1 1 1v2a1 1 0 0 1-1 1H3a1 1 0 0 1-1-1V7z"/>
</svg>`;
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
*/

/** eslint-disable max-len */
export const AlignEnd = `<svg width="1em" height="1em" viewBox="0 0 16 16" class="bi bi-align-end" fill="currentColor" xmlns="http://www.w3.org/2000/svg">
export const AlignEnd = `<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-align-end" viewBox="0 0 16 16">
<path fill-rule="evenodd" d="M14.5 1a.5.5 0 0 0-.5.5v13a.5.5 0 0 0 1 0v-13a.5.5 0 0 0-.5-.5z"/>
<path d="M13 7a1 1 0 0 0-1-1H2a1 1 0 0 0-1 1v2a1 1 0 0 0 1 1h10a1 1 0 0 0 1-1V7z"/>
</svg>`;
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@
*/

/** eslint-disable max-len */
export const AlignMiddle = `<svg width="1em" height="1em" viewBox="0 0 16 16" class="bi bi-align-middle" fill="currentColor" xmlns="http://www.w3.org/2000/svg">
export const AlignMiddle = `<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-align-middle" viewBox="0 0 16 16">
<path d="M6 13a1 1 0 0 0 1 1h2a1 1 0 0 0 1-1V3a1 1 0 0 0-1-1H7a1 1 0 0 0-1 1v10zM1 8a.5.5 0 0 0 .5.5H6v-1H1.5A.5.5 0 0 0 1 8zm14 0a.5.5 0 0 1-.5.5H10v-1h4.5a.5.5 0 0 1 .5.5z"/>
</svg>`;
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
*/

/** eslint-disable max-len */
export const AlignStart = `<svg width="1em" height="1em" viewBox="0 0 16 16" class="bi bi-align-start" fill="currentColor" xmlns="http://www.w3.org/2000/svg">
export const AlignStart = `<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-align-start" viewBox="0 0 16 16">
<path fill-rule="evenodd" d="M1.5 1a.5.5 0 0 1 .5.5v13a.5.5 0 0 1-1 0v-13a.5.5 0 0 1 .5-.5z"/>
<path d="M3 7a1 1 0 0 1 1-1h10a1 1 0 0 1 1 1v2a1 1 0 0 1-1 1H4a1 1 0 0 1-1-1V7z"/>
</svg>`;
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
*/

/** eslint-disable max-len */
export const AlignTop = `<svg width="1em" height="1em" viewBox="0 0 16 16" class="bi bi-align-top" fill="currentColor" xmlns="http://www.w3.org/2000/svg">
export const AlignTop = `<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-align-top" viewBox="0 0 16 16">
<path d="M6 14a1 1 0 0 0 1 1h2a1 1 0 0 0 1-1V4a1 1 0 0 0-1-1H7a1 1 0 0 0-1 1v10z"/>
<path fill-rule="evenodd" d="M1 1.5a.5.5 0 0 0 .5.5h13a.5.5 0 0 0 0-1h-13a.5.5 0 0 0-.5.5z"/>
</svg>`;
Loading

0 comments on commit 60f208a

Please sign in to comment.