This repository was archived by the owner on Jun 13, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathBranchIcon.tsx
More file actions
9 lines (7 loc) · 1.75 KB
/
BranchIcon.tsx
File metadata and controls
9 lines (7 loc) · 1.75 KB
1
2
3
4
5
6
7
8
9
import { IconProps } from '../IconProps';
const BranchIcon = (props: IconProps) => (
<svg className={props.className} viewBox="0 0 13 18" fill={props.color}>
<path fillRule="evenodd" clipRule="evenodd" d="M1.83268 3.58329C1.83268 2.89294 2.39233 2.33329 3.08268 2.33329C3.77304 2.33329 4.33268 2.89294 4.33268 3.58329C4.33268 4.27365 3.77304 4.83329 3.08268 4.83329C2.39233 4.83329 1.83268 4.27365 1.83268 3.58329ZM3.91602 6.37918C5.1208 6.02061 5.99935 4.90455 5.99935 3.58329C5.99935 1.97246 4.69351 0.666626 3.08268 0.666626C1.47185 0.666626 0.166016 1.97246 0.166016 3.58329C0.166016 4.90455 1.04456 6.02061 2.24935 6.37918V11.6207C1.04456 11.9793 0.166016 13.0954 0.166016 14.4166C0.166016 16.0275 1.47185 17.3333 3.08268 17.3333C4.69351 17.3333 5.99935 16.0275 5.99935 14.4166C5.99935 13.0954 5.1208 11.9793 3.91602 11.6207V10.9244C4.14011 10.6913 4.80727 10.25 6.41602 10.25C8.71437 10.25 10.0623 9.25052 10.4588 8.07974C11.7268 7.76287 12.666 6.6161 12.666 5.24996C12.666 3.63913 11.3602 2.33329 9.74935 2.33329C8.13852 2.33329 6.83268 3.63913 6.83268 5.24996C6.83268 6.45658 7.56539 7.49206 8.61014 7.93576C8.29175 8.2588 7.65721 8.58329 6.41602 8.58329C5.40781 8.58329 4.57259 8.73647 3.91602 8.99525V6.37918ZM9.74935 6.49996C10.4397 6.49996 10.9993 5.94032 10.9993 5.24996C10.9993 4.5596 10.4397 3.99996 9.74935 3.99996C9.05899 3.99996 8.49935 4.5596 8.49935 5.24996C8.49935 5.94032 9.05899 6.49996 9.74935 6.49996ZM3.08424 13.1666C3.08372 13.1666 3.0832 13.1666 3.08268 13.1666C3.08216 13.1666 3.08164 13.1666 3.08112 13.1666C2.39148 13.1675 1.83268 13.7268 1.83268 14.4166C1.83268 15.107 2.39233 15.6666 3.08268 15.6666C3.77304 15.6666 4.33268 15.107 4.33268 14.4166C4.33268 13.7268 3.77388 13.1675 3.08424 13.1666Z" fill="#161616"/>
</svg>
);
export default BranchIcon;