jsketcher/modules/ui/components/ImgIcon.jsx
2018-01-17 00:06:31 -08:00

13 lines
No EOL
343 B
JavaScript

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