6 lines
229 B
TypeScript
Executable File
6 lines
229 B
TypeScript
Executable File
import {createSvgIcon} from '../create-svg-icon';
|
|
|
|
export const CropSquareIcon = createSvgIcon(
|
|
<path d="M18 4H6c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 14H6V6h12v12z" />
|
|
, 'CropSquareOutlined');
|