Skip to content

Commit

Permalink
feat: add video camera icon (#1232)
Browse files Browse the repository at this point in the history
* feat: add video camera icon

* fix: export proper path
  • Loading branch information
DejanBojovicSMG authored Dec 10, 2024
1 parent a75ee3e commit ec38c0c
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 0 deletions.
22 changes: 22 additions & 0 deletions src/components/icons/VideoCameraIcon.tsx
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',
},
});
1 change: 1 addition & 0 deletions src/components/icons/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,7 @@ export { UtilityVehicleIcon } from './UtilityVehicleIcon';
export { VehiclePowerIcon } from './VehiclePowerIcon';
export { VehicleTypesMotorcycleIcon } from './VehicleTypesMotorcycleIcon';
export { VideoIcon } from './VideoIcon';
export { VideoCameraIcon } from './VideoCameraIcon';
export { ViewCarIcon } from './ViewCarIcon';
export { DriveSystemLargeIcon } from './DriveSystemLargeIcon';
export { WarningIcon } from './WarningIcon';
Expand Down

0 comments on commit ec38c0c

Please sign in to comment.