diff options
Diffstat (limited to 'src/components/svg/Compare.tsx')
| -rw-r--r-- | src/components/svg/Compare.tsx | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/components/svg/Compare.tsx b/src/components/svg/Compare.tsx new file mode 100644 index 0000000..3434461 --- /dev/null +++ b/src/components/svg/Compare.tsx @@ -0,0 +1,8 @@ +import type { SVGProps } from 'react'; + +const SvgCompare = (props: SVGProps<SVGSVGElement>) => ( + <svg xmlns="http://www.w3.org/2000/svg" width={512} height={512} viewBox="0 0 24 24" {...props}> + <path d="M6 22a1 1 0 0 1-.71-.29l-4-4a1 1 0 0 1 0-1.42l4-4a1 1 0 0 1 1.42 1.42L4.41 16H22a1 1 0 0 1 0 2H4.41l2.3 2.29a1 1 0 0 1 0 1.42A1 1 0 0 1 6 22m12-10a1 1 0 0 1-.71-.29 1 1 0 0 1 0-1.42L19.59 8H2a1 1 0 0 1 0-2h17.59l-2.3-2.29a1 1 0 0 1 1.42-1.42l4 4a1 1 0 0 1 0 1.42l-4 4A1 1 0 0 1 18 12" /> + </svg> +); +export default SvgCompare; |