Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 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 27 28 29 30 31 32 | 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x | import React from 'react';
export interface Props {
width?: number | string;
height?: number | string;
color?: string;
className?: string;
}
export const IncreaseIcon: React.FC<Props> = ({
width = 14,
height = 14,
color = '#3FBC36',
className = '',
}) => {
return (
<svg
width={width}
height={height}
className={className}
viewBox="0 0 15 15"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<path
d="M7.29688 14.3713C3.43088 14.3713 0.296875 11.2373 0.296875 7.37134C0.296875 3.50534 3.43088 0.371338 7.29688 0.371338C11.1629 0.371338 14.2969 3.50534 14.2969 7.37134C14.2926 11.2356 11.1611 14.3671 7.29688 14.3713ZM7.28568 12.9713H7.29688C10.3886 12.9682 12.8928 10.4602 12.8913 7.36854C12.8897 4.27684 10.383 1.77134 7.29127 1.77134C4.19957 1.77134 1.69282 4.27684 1.69128 7.36854C1.68973 10.4602 4.19398 12.9682 7.28568 12.9713ZM7.99687 10.8713H6.59687V6.55234L4.78387 8.35834L3.79688 7.37134L7.29688 3.87134L10.7969 7.37134L9.80987 8.35834L7.99687 6.55234V10.8713Z"
fill={color}
/>
</svg>
);
};
|