UNPKG

@icon-park/svg

Version:

Pure Svg Icons for IconPark

4 lines 989 B
import { IconWrapper } from '../runtime'; export default IconWrapper('disk-two', function (props) { return '<?xml version="1.0" encoding="UTF-8"?>' + '<svg width="' + props.size + '" height="' + props.size + '" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg">' + '<rect x="4" y="13" width="32" height="22" rx="2" stroke="' + props.colors[0] + '" stroke-width="' + props.strokeWidth + '"/>' + '<path d="M4 13H14V35H4V13Z" fill="' + props.colors[1] + '" stroke="' + props.colors[0] + '" stroke-width="' + props.strokeWidth + '" stroke-linecap="' + props.strokeLinecap + '" stroke-linejoin="' + props.strokeLinejoin + '"/>' + '<path d="M36 19H44V29H36" stroke="' + props.colors[0] + '" stroke-width="' + props.strokeWidth + '" stroke-linecap="' + props.strokeLinecap + '" stroke-linejoin="' + props.strokeLinejoin + '"/>' + '<circle cx="30" cy="21" r="2" fill="' + props.colors[0] + '"/>' + '<circle cx="30" cy="27" r="2" fill="' + props.colors[0] + '"/>' + '</svg>'; });