-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* feat: add video camera icon * fix: export proper path
- Loading branch information
1 parent
a75ee3e
commit ec38c0c
Showing
2 changed files
with
23 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
import React from 'react'; | ||
import { ComponentWithAs } from '@chakra-ui/system'; | ||
import { createIcon, IconProps } from '@chakra-ui/react'; | ||
|
||
export const VideoCameraIcon: ComponentWithAs<'svg', IconProps> = createIcon({ | ||
displayName: 'Video Camera', | ||
viewBox: '0 0 24 24', | ||
path: ( | ||
<> | ||
<title>Video camera icon</title> | ||
<path | ||
fillRule="evenodd" | ||
clipRule="evenodd" | ||
fill="currentColor" | ||
d="M16 6.00928H2V18.0093H16V15.79L22 17.29V6.62183L16 8.62183V6.00928ZM16 10.73V13.7285L20 14.7285V9.39668L16 10.73ZM4 16.0093V8.00928H14V16.0093H4Z" | ||
/> | ||
</> | ||
), | ||
defaultProps: { | ||
boxSize: 'sm', | ||
}, | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters