mirror of
https://github.com/ToolJet/ToolJet
synced 2026-05-04 13:58:54 +00:00
22 lines
1.4 KiB
React
22 lines
1.4 KiB
React
|
|
import React from 'react';
|
||
|
|
|
||
|
|
const Open = ({ fill = '#3E63DD', width = '11', height = '10', className = '', viewBox = '0 0 11 10' }) => (
|
||
|
|
<svg
|
||
|
|
width={width}
|
||
|
|
height={height}
|
||
|
|
viewBox={viewBox}
|
||
|
|
fill="none"
|
||
|
|
xmlns="http://www.w3.org/2000/svg"
|
||
|
|
className={className}
|
||
|
|
>
|
||
|
|
<path
|
||
|
|
fill-rule="evenodd"
|
||
|
|
clip-rule="evenodd"
|
||
|
|
d="M9.88378 0.0644531L6.88379 0.0644536C6.67668 0.0644537 6.50879 0.232347 6.50879 0.439453C6.50879 0.64656 6.67668 0.814454 6.88379 0.814454L8.97845 0.814453L4.11862 5.67429C3.97218 5.82073 3.97218 6.05817 4.11862 6.20462C4.26507 6.35106 4.50251 6.35106 4.64895 6.20462L9.50879 1.34478L9.50879 3.43945C9.50879 3.64656 9.67668 3.81445 9.88379 3.81445C10.0909 3.81445 10.2588 3.64656 10.2588 3.43945L10.2588 0.439453C10.2588 0.232346 10.0909 0.0644531 9.88378 0.0644531ZM2.88379 1.06445C1.57211 1.06445 0.508789 2.12778 0.508789 3.43945V7.43945C0.508789 8.75113 1.57211 9.81445 2.88379 9.81445H6.88379C8.19547 9.81445 9.25879 8.75113 9.25879 7.43945V4.93945C9.25879 4.73235 9.0909 4.56445 8.88379 4.56445C8.67668 4.56445 8.50879 4.73235 8.50879 4.93945V7.43945C8.50879 8.33692 7.78125 9.06445 6.88379 9.06445H2.88379C1.98633 9.06445 1.25879 8.33692 1.25879 7.43945V3.43945C1.25879 2.54199 1.98633 1.81445 2.88379 1.81445H5.38379C5.5909 1.81445 5.75879 1.64656 5.75879 1.43945C5.75879 1.23235 5.5909 1.06445 5.38379 1.06445H2.88379Z"
|
||
|
|
fill={fill}
|
||
|
|
/>
|
||
|
|
</svg>
|
||
|
|
);
|
||
|
|
|
||
|
|
export default Open;
|