Skip to content

Commit 1735895

Browse files
authored
feat: add filled check circle icon and larger icon size (#920)
1 parent 28f30d6 commit 1735895

File tree

5 files changed

+12
-0
lines changed

5 files changed

+12
-0
lines changed
Lines changed: 3 additions & 0 deletions
Loading

projects/assets-library/src/icons/icon-library.module.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ const iconsRootPath = 'assets/icons';
2525
{ key: IconType.ArrowUpLeft, url: `${iconsRootPath}/arrow-up-left.svg` },
2626
{ key: IconType.ArrowUpRight, url: `${iconsRootPath}/arrow-up-right.svg` },
2727
{ key: IconType.CheckCircle, url: `${iconsRootPath}/check-circle.svg` },
28+
{ key: IconType.CheckCircleFill, url: `${iconsRootPath}/check-circle-fill.svg` },
2829
{ key: IconType.ChevronDown, url: `${iconsRootPath}/chevron-down.svg` },
2930
{ key: IconType.ChevronLeft, url: `${iconsRootPath}/chevron-left.svg` },
3031
{ key: IconType.ChevronRight, url: `${iconsRootPath}/chevron-right.svg` },

projects/assets-library/src/icons/icon-type.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ export const enum IconType {
1616
ArrowUpRight = 'svg:arrow-up-right',
1717
Cancel = 'cancel',
1818
CheckCircle = 'svg:check-circle',
19+
CheckCircleFill = 'svg:check-circle-fill',
1920
Checkmark = 'checkmark',
2021
ChevronDown = 'svg:chevron-down',
2122
ChevronLeft = 'svg:chevron-left',

projects/components/src/icon/icon-size.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ export const enum IconSize {
44
Medium = 'medium',
55
Large = 'large',
66
ExtraLarge = 'extra-large',
7+
ExtraLarger = 'extra-larger',
78
Hodor = 'hodor',
89
Inherit = 'inherit'
910
}

projects/components/src/icon/icon.component.scss

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,12 @@
3535
width: 32px;
3636
}
3737

38+
&.extra-larger {
39+
font-size: 48px;
40+
height: 48px;
41+
width: 48px;
42+
}
43+
3844
&.hodor {
3945
font-size: 64px;
4046
height: 64px;

0 commit comments

Comments
 (0)