6 lines
323 B
TypeScript
Executable File
6 lines
323 B
TypeScript
Executable File
import {createSvgIcon} from '../create-svg-icon';
|
|
|
|
export const ViewCompactAltIcon = createSvgIcon(
|
|
[<path d="M20 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 14H4V6h16v12z" key="0" />,<path d="M7.5 7.5h4v4h-4zm5 0h4v4h-4zm-5 5h4v4h-4zm5 0h4v4h-4z" key="1" />,]
|
|
, 'ViewCompactAltOutlined');
|