-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
43f84bb
commit c825125
Showing
3 changed files
with
33 additions
and
0 deletions.
There are no files selected for viewing
10 changes: 10 additions & 0 deletions
10
projects/icons/src/declarations/constants/icons/app-sidebar-left-bottom.const.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
import { IconDefinition } from '../../../declarations/interfaces/icon-definition.interface'; | ||
|
||
export const appSidebarLeftBottomIcon: IconDefinition = { | ||
name: 'app-sidebar-left-bottom', | ||
data: `<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg"> | ||
<path fill-rule="evenodd" clip-rule="evenodd" d="M4 2C2.89543 2 2 2.89543 2 4V12C2 13.1046 2.89543 14 4 14H12C13.1046 14 14 13.1046 14 12V4C14 2.89543 13.1046 2 12 2H4ZM12 3H7.14286V13H12C12.5523 13 13 12.5523 13 12V4C13 3.44772 12.5523 3 12 3ZM6.28571 8H3V4C3 3.44772 3.44772 3 4 3H6.28571V8Z" fill="currentColor"/> | ||
</svg> | ||
`, | ||
}; |
9 changes: 9 additions & 0 deletions
9
projects/icons/src/declarations/constants/icons/app-sidebar-left-top.const.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
import { IconDefinition } from '../../../declarations/interfaces/icon-definition.interface'; | ||
|
||
export const appSidebarLeftTopIcon: IconDefinition = { | ||
name: 'app-sidebar-left-top', | ||
data: `<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg"> | ||
<path fill-rule="evenodd" clip-rule="evenodd" d="M4 14C2.89543 14 2 13.1046 2 12V4C2 2.89543 2.89543 2 4 2H12C13.1046 2 14 2.89543 14 4V12C14 13.1046 13.1046 14 12 14H4ZM12 13H7.14286V3H12C12.5523 3 13 3.44772 13 4V12C13 12.5523 12.5523 13 12 13ZM3 8V12C3 12.5523 3.44772 13 4 13H6.28571V8H3Z" fill="currentColor"/> | ||
</svg> | ||
`, | ||
}; |
14 changes: 14 additions & 0 deletions
14
projects/icons/src/declarations/constants/icons/app-windows-icon.const.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
import { IconDefinition } from '../../../declarations/interfaces/icon-definition.interface'; | ||
|
||
export const appWindowsIcon: IconDefinition = { | ||
name: 'app-windows', | ||
data: `<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg"> | ||
<mask id="mask0_10048_2400" style="mask-type:alpha" maskUnits="userSpaceOnUse" x="0" y="0" width="16" height="16"> | ||
<path fill-rule="evenodd" clip-rule="evenodd" d="M4 3C4 2.93096 4.0035 2.86275 4.01033 2.79551C4.11275 1.787 4.96447 1 6 1H13C14.1046 1 15 1.89543 15 3V10C15 11.1046 14.1046 12 13 12H6C4.89543 12 4 11.1046 4 10V3ZM14 3L5 3V10C5 10.5523 5.44772 11 6 11H13C13.5523 11 14 10.5523 14 10V3ZM9.5 14H3.5C2.67157 14 2 13.3285 2 12.5V6.50004C2 5.9819 2.26271 5.52512 2.6622 5.25563C2.85063 5.12852 3 4.93343 3 4.70614C3 4.36709 2.6847 4.11167 2.38157 4.26356C1.56236 4.67403 1 5.52136 1 6.50004V12.5C1 13.8808 2.11929 15 3.5 15H9.5C10.4787 15 11.326 14.4377 11.7365 13.6185C11.8884 13.3153 11.633 13 11.2939 13C11.0666 13 10.8715 13.1494 10.7444 13.3378C10.4749 13.7373 10.0181 14 9.5 14Z" fill="currentColor"/> | ||
</mask> | ||
<g mask="url(#mask0_10048_2400)"> | ||
<rect width="16" height="16" fill="currentColor"/> | ||
</g> | ||
</svg> | ||
`, | ||
}; |