39 lines
744 B
TypeScript
39 lines
744 B
TypeScript
import React from 'react';
|
|
import type { IconProps } from '../types';
|
|
|
|
export const ChevronOpen = (props: IconProps) => (
|
|
<svg
|
|
width="24px"
|
|
height="24px"
|
|
viewBox="0 0 24 24"
|
|
version="1.1"
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
{...props}
|
|
>
|
|
<g
|
|
id="icon-chevron-open"
|
|
stroke="none"
|
|
strokeWidth="1"
|
|
fill="none"
|
|
fillRule="evenodd"
|
|
>
|
|
<rect
|
|
id="Rectangle"
|
|
opacity="0.199999988"
|
|
x="0"
|
|
y="0"
|
|
width="24"
|
|
height="24"
|
|
rx="4"
|
|
></rect>
|
|
<polyline
|
|
id="Path-2"
|
|
stroke="currentColor"
|
|
points="8 10 12.090229 14.090229 16.1804581 10"
|
|
></polyline>
|
|
</g>
|
|
</svg>
|
|
);
|
|
|
|
export default ChevronOpen;
|