Skip to content

Commit

Permalink
feat(@air/icons): add in discussions and discussions filled icons
Browse files Browse the repository at this point in the history
  • Loading branch information
andyhqtran committed Dec 14, 2021
1 parent c026983 commit 95cd631
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 4 deletions.
4 changes: 4 additions & 0 deletions packages/icons/src/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,8 @@ import _Database from './svgs/uncategorized/Database.svg';
import _DesktopApp from './svgs/uncategorized/DesktopApp.svg';
import _Device from './svgs/uncategorized/Device.svg';
import _Devices from './svgs/uncategorized/Devices.svg';
import _DiscussionsFilled from './svgs/uncategorized/Discussions-Filled.svg';
import _Discussions from './svgs/uncategorized/Discussions.svg';
import _Document from './svgs/uncategorized/Document.svg';
import _Documents from './svgs/uncategorized/Documents.svg';
import _DoubleChevronDown from './svgs/uncategorized/DoubleChevron-Down.svg';
Expand Down Expand Up @@ -240,6 +242,8 @@ export const Database = forwardRef<SVGSVGElement, Omit<SVGProps<SVGSVGElement>,
export const DesktopApp = forwardRef<SVGSVGElement, Omit<SVGProps<SVGSVGElement>, 'css'>>((props, ref) => <_DesktopApp {...props} ref={ref} />); DesktopApp.displayName = 'DesktopApp';
export const Device = forwardRef<SVGSVGElement, Omit<SVGProps<SVGSVGElement>, 'css'>>((props, ref) => <_Device {...props} ref={ref} />); Device.displayName = 'Device';
export const Devices = forwardRef<SVGSVGElement, Omit<SVGProps<SVGSVGElement>, 'css'>>((props, ref) => <_Devices {...props} ref={ref} />); Devices.displayName = 'Devices';
export const DiscussionsFilled = forwardRef<SVGSVGElement, Omit<SVGProps<SVGSVGElement>, 'css'>>((props, ref) => <_DiscussionsFilled {...props} ref={ref} />); DiscussionsFilled.displayName = 'DiscussionsFilled';
export const Discussions = forwardRef<SVGSVGElement, Omit<SVGProps<SVGSVGElement>, 'css'>>((props, ref) => <_Discussions {...props} ref={ref} />); Discussions.displayName = 'Discussions';
export const Document = forwardRef<SVGSVGElement, Omit<SVGProps<SVGSVGElement>, 'css'>>((props, ref) => <_Document {...props} ref={ref} />); Document.displayName = 'Document';
export const Documents = forwardRef<SVGSVGElement, Omit<SVGProps<SVGSVGElement>, 'css'>>((props, ref) => <_Documents {...props} ref={ref} />); Documents.displayName = 'Documents';
export const DoubleChevronDown = forwardRef<SVGSVGElement, Omit<SVGProps<SVGSVGElement>, 'css'>>((props, ref) => <_DoubleChevronDown {...props} ref={ref} />); DoubleChevronDown.displayName = 'DoubleChevronDown';
Expand Down
3 changes: 3 additions & 0 deletions packages/icons/src/svgs/uncategorized/Discussions-Filled.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 3 additions & 0 deletions packages/icons/src/svgs/uncategorized/Discussions.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions packages/icons/src/svgs/uncategorized/NestedHidden.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions packages/icons/src/svgs/uncategorized/NestedVisible.svg
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 95cd631

Please sign in to comment.