mirror of
https://github.com/xibyte/jsketcher
synced 2025-12-07 00:45:08 +01:00
12 lines
No EOL
226 B
JavaScript
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>
|
|
} |