UNPKG

@icon-park/svg

Version:

Pure Svg Icons for IconPark

4 lines 1.37 kB
import { IconWrapper } from '../runtime'; export default IconWrapper('calculator-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="8" y="4" width="32" height="40" rx="2" stroke="' + props.colors[0] + '" stroke-width="' + props.strokeWidth + '" stroke-linecap="' + props.strokeLinecap + '" stroke-linejoin="' + props.strokeLinejoin + '"/>' + '<rect x="14" y="11" width="20" height="9" fill="' + props.colors[1] + '" stroke="' + props.colors[0] + '" stroke-width="' + props.strokeWidth + '" stroke-linecap="' + props.strokeLinecap + '" stroke-linejoin="' + props.strokeLinejoin + '"/>' + '<circle cx="17" cy="26" r="2" fill="' + props.colors[0] + '"/>' + '<circle cx="17" cy="32" r="2" fill="' + props.colors[0] + '"/>' + '<circle cx="17" cy="38" r="2" fill="' + props.colors[0] + '"/>' + '<circle cx="24" cy="26" r="2" fill="' + props.colors[0] + '"/>' + '<circle cx="24" cy="32" r="2" fill="' + props.colors[0] + '"/>' + '<circle cx="24" cy="38" r="2" fill="' + props.colors[0] + '"/>' + '<circle cx="31" cy="26" r="2" fill="' + props.colors[0] + '"/>' + '<circle cx="31" cy="32" r="2" fill="' + props.colors[0] + '"/>' + '<circle cx="31" cy="38" r="2" fill="' + props.colors[0] + '"/>' + '</svg>'; });