ReactJS
1import React from 'react';
2import {IIconBaseProp} from "../Icon";
3
4export function BlockIcon({size}: IIconBaseProp) {
5return (
6<svg width={size} height={size} viewBox="0 0 14 14" fill="none"
7xmlns="http://www.w3.org/2000/svg">
8<path
9d="M7 0C3.136 0 0 3.136 0 7C0 10.864 3.136 14 7 14C10.864 14 14 10.864 14 7C14 3.136 10.864 0 7 0ZM7 12.6C3.906 12.6 1.4 10.094 1.4 7C1.4 5.705 1.841 4.515 2.583 3.57L10.43 11.417C9.485 12.159 8.295 12.6 7 12.6ZM11.417 10.43L3.57 2.583C4.515 1.841 5.705 1.4 7 1.4C10.094 1.4 12.6 3.906 12.6 7C12.6 8.295 12.159 9.485 11.417 10.43Z"
10fill="#999999"/>
11</svg>
12);
13}
14