Skip to content

Commit

Permalink
feat: add calendar icon
Browse files Browse the repository at this point in the history
  • Loading branch information
creatyvtype committed Dec 14, 2021
1 parent 8422966 commit 112f790
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
2 changes: 2 additions & 0 deletions packages/icons/src/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ import _Boards from './svgs/uncategorized/Boards.svg';
import _Bookmark from './svgs/uncategorized/Bookmark.svg';
import _BoxLogo from './svgs/uncategorized/BoxLogo.svg';
import _BrokenLink from './svgs/uncategorized/Broken-Link.svg';
import _Calendar from './svgs/uncategorized/Calendar.svg';
import _CameraFilled from './svgs/uncategorized/Camera-Filled.svg';
import _Camera from './svgs/uncategorized/Camera.svg';
import _Cart from './svgs/uncategorized/Cart.svg';
Expand Down Expand Up @@ -214,6 +215,7 @@ export const Boards = forwardRef<SVGSVGElement, Omit<SVGProps<SVGSVGElement>, 'c
export const Bookmark = forwardRef<SVGSVGElement, Omit<SVGProps<SVGSVGElement>, 'css'>>((props, ref) => <_Bookmark {...props} ref={ref} />); Bookmark.displayName = 'Bookmark';
export const BoxLogo = forwardRef<SVGSVGElement, Omit<SVGProps<SVGSVGElement>, 'css'>>((props, ref) => <_BoxLogo {...props} ref={ref} />); BoxLogo.displayName = 'BoxLogo';
export const BrokenLink = forwardRef<SVGSVGElement, Omit<SVGProps<SVGSVGElement>, 'css'>>((props, ref) => <_BrokenLink {...props} ref={ref} />); BrokenLink.displayName = 'BrokenLink';
export const Calendar = forwardRef<SVGSVGElement, Omit<SVGProps<SVGSVGElement>, 'css'>>((props, ref) => <_Calendar {...props} ref={ref} />); Calendar.displayName = 'Calendar';
export const CameraFilled = forwardRef<SVGSVGElement, Omit<SVGProps<SVGSVGElement>, 'css'>>((props, ref) => <_CameraFilled {...props} ref={ref} />); CameraFilled.displayName = 'CameraFilled';
export const Camera = forwardRef<SVGSVGElement, Omit<SVGProps<SVGSVGElement>, 'css'>>((props, ref) => <_Camera {...props} ref={ref} />); Camera.displayName = 'Camera';
export const Cart = forwardRef<SVGSVGElement, Omit<SVGProps<SVGSVGElement>, 'css'>>((props, ref) => <_Cart {...props} ref={ref} />); Cart.displayName = 'Cart';
Expand Down
6 changes: 6 additions & 0 deletions packages/icons/src/svgs/uncategorized/Calendar.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

1 comment on commit 112f790

@vercel
Copy link

@vercel vercel bot commented on 112f790 Dec 14, 2021

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.