-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathicon-back.tsx
More file actions
26 lines (23 loc) · 759 Bytes
/
Copy pathicon-back.tsx
File metadata and controls
26 lines (23 loc) · 759 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 IconBack = 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="M424.992 679.008l-272-272-21.984-23.008 21.984-23.008 272-272 46.016 46.016L254.016 352H896v64H253.984l217.024 216.992L424.96 679.04z" />
</g>
</svg>
);
});
IconBack.displayName = 'IconBack';
export { IconBack };