blob: 935a2f7a86120286277abdc4ab3842d2be55fb2d (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
import type { SVGProps } from 'react';
const SvgChange = (props: SVGProps<SVGSVGElement>) => (
<svg
xmlns="http://www.w3.org/2000/svg"
xmlSpace="preserve"
viewBox="0 0 512.013 512.013"
{...props}
>
<path d="m372.653 244.726 22.56 22.56 112-112c6.204-6.241 6.204-16.319 0-22.56l-112-112-22.56 22.72 84.8 84.64H.013v32h457.44zm139.36 107.36H54.573l84.8-84.64-22.72-22.72-112 112c-6.204 6.241-6.204 16.319 0 22.56l112 112 22.56-22.56-84.64-84.64h457.44z" />
</svg>
);
export default SvgChange;
|