2023-10-31 08:32:40 -04:00
|
|
|
import { Box } from 'resource:///com/github/Aylur/ags/widget.js';
|
2023-10-02 12:06:35 -04:00
|
|
|
|
|
|
|
|
2023-11-13 15:19:49 -05:00
|
|
|
export default (size, { vertical = false, ...props } = {}) => {
|
2023-11-06 18:37:23 -05:00
|
|
|
if (vertical) {
|
2023-10-20 23:11:21 -04:00
|
|
|
return Box({
|
2023-11-06 18:37:23 -05:00
|
|
|
css: `min-height: ${size}px;`,
|
2023-11-13 15:19:49 -05:00
|
|
|
...props,
|
2023-10-20 23:11:21 -04:00
|
|
|
});
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
return Box({
|
2023-11-06 18:37:23 -05:00
|
|
|
css: `min-width: ${size}px;`,
|
2023-11-13 15:19:49 -05:00
|
|
|
...props,
|
2023-10-20 23:11:21 -04:00
|
|
|
});
|
|
|
|
}
|
|
|
|
};
|