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

12 lines
No EOL
226 B
JavaScript

import React from 'react';
export default function Filler({width, height, children, style, ...props}) {
return <span style={{
display: 'inline-block',
width,
height,
...style
}}>
{children}
</span>
}