jsketcher/modules/ui/components/ImgIcon.jsx
2020-05-21 17:23:07 -07:00

13 lines
No EOL
364 B
JavaScript

import React from 'react';
export default function ImgIcon({url, size, style, ...props}) {
return <span className='img-icon' style={{
display: 'inline-block',
backgroundImage: 'url('+url+')',
backgroundRepeat: 'no-repeat',
backgroundSize: `${size}px ${size}px`,
width: size + 'px',
height: size + 'px',
...style
}} {...props} />
};