UNPKG

@icon-park/svg

Version:

Pure Svg Icons for IconPark

4 lines 1.51 kB
import { IconWrapper } from '../runtime'; export default IconWrapper('memory-one', 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="5" y="28" width="38" height="14" fill="' + props.colors[1] + '" stroke="' + props.colors[0] + '" stroke-width="' + props.strokeWidth + '" stroke-linecap="' + props.strokeLinecap + '" stroke-linejoin="' + props.strokeLinejoin + '"/>' + '<rect x="5" y="6" width="38" height="14" fill="' + props.colors[1] + '" stroke="' + props.colors[0] + '" stroke-width="' + props.strokeWidth + '" stroke-linecap="' + props.strokeLinecap + '" stroke-linejoin="' + props.strokeLinejoin + '"/>' + '<rect x="11" y="11" width="4" height="4" rx="2" fill="' + props.colors[2] + '"/>' + '<rect x="11" y="33" width="4" height="4" rx="2" fill="' + props.colors[2] + '"/>' + '<rect x="19" y="11" width="4" height="4" rx="2" fill="' + props.colors[2] + '"/>' + '<rect x="19" y="33" width="4" height="4" rx="2" fill="' + props.colors[2] + '"/>' + '<path d="M31 13H35" stroke="' + props.colors[2] + '" stroke-width="' + props.strokeWidth + '" stroke-linecap="' + props.strokeLinecap + '" stroke-linejoin="' + props.strokeLinejoin + '"/>' + '<path d="M31 35H35" stroke="' + props.colors[2] + '" stroke-width="' + props.strokeWidth + '" stroke-linecap="' + props.strokeLinecap + '" stroke-linejoin="' + props.strokeLinejoin + '"/>' + '</svg>'; });