Skip to content

Commit

Permalink
feat: add call icon
Browse files Browse the repository at this point in the history
  • Loading branch information
raviteja83 committed Mar 27, 2024
1 parent f9eb0e8 commit 3379450
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 0 deletions.
3 changes: 3 additions & 0 deletions packages/react-icons/assets/CallIcon.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
11 changes: 11 additions & 0 deletions packages/react-icons/src/CallIcon.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
import * as React from 'react';
import { SVGProps } from 'react';
const SvgCallIcon = (props: SVGProps<SVGSVGElement>) => (
<svg width="24px" height="24px" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" {...props}>
<path
d="M18.646 21c-.07 0-.14 0-.217-.008a16.19 16.19 0 0 1-7.039-2.504 15.955 15.955 0 0 1-4.883-4.883A16.178 16.178 0 0 1 4.01 6.55a2.303 2.303 0 0 1 .597-1.79A2.356 2.356 0 0 1 6.327 4h2.327c.542 0 1.1.194 1.535.566.426.364.705.876.783 1.434a9.36 9.36 0 0 0 .504 2.015c.155.42.193.869.093 1.303-.094.434-.31.837-.62 1.147l-.559.558a11.714 11.714 0 0 0 3.558 3.558l.559-.558a2.253 2.253 0 0 1 1.155-.62 2.333 2.333 0 0 1 1.302.093c.643.24 1.326.411 2.008.504a2.324 2.324 0 0 1 2.007 2.349v2.318a2.311 2.311 0 0 1-.752 1.72c-.24.218-.519.388-.829.489a2.284 2.284 0 0 1-.752.124ZM8.67 5.55H6.33a.724.724 0 0 0-.31.07c-.102.039-.195.1-.264.178a.634.634 0 0 0-.163.28.874.874 0 0 0-.039.317 14.713 14.713 0 0 0 2.256 6.372 14.474 14.474 0 0 0 4.418 4.419 14.66 14.66 0 0 0 6.357 2.264.832.832 0 0 0 .302-.04.853.853 0 0 0 .28-.162.632.632 0 0 0 .186-.264.75.75 0 0 0 .061-.317v-2.341a.752.752 0 0 0-.186-.52.75.75 0 0 0-.48-.263c-.79-.101-1.581-.303-2.341-.582a.759.759 0 0 0-.434-.03.763.763 0 0 0-.388.209l-.977.984a.775.775 0 0 1-.93.124 13.263 13.263 0 0 1-4.946-4.938c-.162-.325-.116-.705.132-.953l.985-.985c.1-.1.17-.232.201-.38a.754.754 0 0 0-.03-.434 10.75 10.75 0 0 1-.59-2.349.776.776 0 0 0-.256-.473.792.792 0 0 0-.504-.186Z"
fill="currentColor"
/>
</svg>
);
export default SvgCallIcon;
1 change: 1 addition & 0 deletions packages/react-icons/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@ export { default as BuildingIcon } from './BuildingIcon';
export { default as CalculatorIcon } from './CalculatorIcon';
export { default as CalculatorIconsIcon } from './CalculatorIconsIcon';
export { default as CalendarIcon } from './CalendarIcon';
export { default as CallIcon } from './CallIcon';
export { default as CameraFlipIcon } from './CameraFlipIcon';
export { default as CardIcon } from './CardIcon';
export { default as CardWithCvcIcon } from './CardWithCvcIcon';
Expand Down

0 comments on commit 3379450

Please sign in to comment.