Skip to content

Commit

Permalink
(feat) add CheckmarkOutlineIcon (#1176)
Browse files Browse the repository at this point in the history
  • Loading branch information
usamaidrsk authored Oct 10, 2024
1 parent 1cc8a7c commit 5a6bbe2
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 0 deletions.
1 change: 1 addition & 0 deletions packages/framework/esm-styleguide/mock.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ export const ArrowRightIcon = () => <div>ArrowRightIcon</div>;
export const ArrowUpIcon = () => <div>ArrowUpIcon</div>;
export const BabyIcon = () => <div>BabyIcon</div>;
export const CheckmarkFilledIcon = () => <div>CheckmarkFilledIcon</div>;
export const CheckmarkOutlineIcon = () => <div>CheckmarkOutlineIcon</div>;
export const ChartAverageIcon = () => <div>ChartAverageIcon</div>;
export const ChemistryIcon = () => <div>ChemistryIcon</div>;
export const ChevronDownIcon = () => <div>ChevronDownIcon</div>;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ import caretRight from './svgs/caret-right.svg';
import caretUp from './svgs/caret-up.svg';
import chartAverage from './svgs/chart-average.svg';
import checkmarkFilled from './svgs/checkmark--filled.svg';
import checkmarkOutline from './svgs/checkmark--outline.svg';
import chemistry from './svgs/chemistry.svg';
import chevronDown from './svgs/chevron-down.svg';
import chevronLeft from './svgs/chevron-left.svg';
Expand Down Expand Up @@ -91,6 +92,7 @@ export function setupIcons() {
addSvg('omrs-icon-caret-up', caretUp);
addSvg('omrs-icon-chart-average', chartAverage);
addSvg('omrs-icon-checkmark-filled', checkmarkFilled);
addSvg('omrs-icon-checkmark-outline', checkmarkOutline);
addSvg('omrs-icon-chemistry', chemistry);
addSvg('omrs-icon-chevron-down', chevronDown);
addSvg('omrs-icon-chevron-left', chevronLeft);
Expand Down
8 changes: 8 additions & 0 deletions packages/framework/esm-styleguide/src/icons/icons.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -121,6 +121,14 @@ export const CheckmarkFilledIcon = memo(
}),
);

/**
*/
export const CheckmarkOutlineIcon = memo(
forwardRef<SVGSVGElement, IconProps>(function CheckmarkOutlineIcon(props, ref) {
return <Icon ref={ref} icon="omrs-icon-checkmark-outline" iconProps={props} />;
}),
);

/**
*/
export const ChartAverageIcon = memo(
Expand Down
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 5a6bbe2

Please sign in to comment.