13 lines
284 B
TypeScript
13 lines
284 B
TypeScript
import { Box } from 'resource:///com/github/Aylur/ags/widget.js';
|
|
|
|
|
|
export default (size: number, {
|
|
vertical = false,
|
|
css = '',
|
|
...props
|
|
} = {}) => {
|
|
return Box({
|
|
css: `${vertical ? 'min-height' : 'min-width'}: ${size}px; ${css}`,
|
|
...props,
|
|
});
|
|
};
|