6 lines
332 B
TypeScript
Executable File
6 lines
332 B
TypeScript
Executable File
import {createSvgIcon} from '../create-svg-icon';
|
|
|
|
export const ArrowCircleLeftIcon = createSvgIcon(
|
|
<path d="M2 12c0 5.52 4.48 10 10 10s10-4.48 10-10S17.52 2 12 2 2 6.48 2 12zm18 0c0 4.42-3.58 8-8 8s-8-3.58-8-8 3.58-8 8-8 8 3.58 8 8zM8 12l4-4 1.41 1.41L11.83 11H16v2h-4.17l1.59 1.59L12 16l-4-4z" />
|
|
, 'ArrowCircleLeftOutlined');
|