Skip to content

Commit

Permalink
feat: add AddressCardIcon
Browse files Browse the repository at this point in the history
  • Loading branch information
trevor-anderson committed Mar 3, 2023
1 parent b01090f commit e02cc33
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/components/Icons/AddressCardIcon/AddressCardIcon.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
import SvgIcon from "@mui/material/SvgIcon";
import { ReactComponent as AddressCardIconSVG } from "./fa-address-card.svg";

export const AddressCardIcon = (props: React.ComponentProps<typeof SvgIcon>) => {
return <SvgIcon component={AddressCardIconSVG} inheritViewBox {...props} />;
};
1 change: 1 addition & 0 deletions src/components/Icons/AddressCardIcon/fa-address-card.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions src/components/Icons/AddressCardIcon/index.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export { AddressCardIcon } from "./AddressCardIcon";
1 change: 1 addition & 0 deletions src/components/Icons/index.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
// Font Awesome icons:
export { AddressCardIcon } from "./AddressCardIcon";
export { FileInvoiceDollarIcon } from "./FileInvoiceDollarIcon";
export { PenToSquareIcon } from "./PenToSquareIcon";
export { PersonCircleExclamationIcon } from "./PersonCircleExclamationIcon";
Expand Down

0 comments on commit e02cc33

Please sign in to comment.