-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathicon-arrow-down-left-circle.tsx
More file actions
26 lines (23 loc) · 983 Bytes
/
Copy pathicon-arrow-down-left-circle.tsx
File metadata and controls
26 lines (23 loc) · 983 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
import { forwardRef } from 'react';
import type { IconProps } from './types';
const IconArrowDownLeftCircle = forwardRef<SVGSVGElement, IconProps>((props, ref) => {
const { size = '1em', color = 'currentColor', className, style, ...rest } = props;
return (
<svg
ref={ref}
viewBox="0 0 1024 1024"
width={size}
height={size}
fill={color}
className={className}
style={{ verticalAlign: "middle", ...style }}
{...rest}
>
<g transform="translate(0, 896) scale(1, -1)">
<path d="M512 800C282.624 800 96 613.376 96 384s186.624-416 416-416 416 186.624 416 416S741.376 800 512 800z m0-64c194.784 0 352-157.216 352-352s-157.216-352-352-352S160 189.216 160 384 317.216 736 512 736z m136.992-168.992L416 334.01599999999996V512h-64v-288h288v64h-178.016l233.024 232.992-46.016 46.016z" />
</g>
</svg>
);
});
IconArrowDownLeftCircle.displayName = 'IconArrowDownLeftCircle';
export { IconArrowDownLeftCircle };