parent
8bd0b732e7
commit
557e4c7a52
32 changed files with 281 additions and 12 deletions
modules/ags/gtk4/widgets/misc
12
modules/ags/gtk4/widgets/misc/separator.ts
Normal file
12
modules/ags/gtk4/widgets/misc/separator.ts
Normal file
|
@ -0,0 +1,12 @@
|
|||
import { Box, BoxProps } from '../subclasses';
|
||||
|
||||
|
||||
export default ({
|
||||
size,
|
||||
vertical = false,
|
||||
css = '',
|
||||
...rest
|
||||
}: { size: number } & BoxProps) => Box({
|
||||
css: `* { ${vertical ? 'min-height' : 'min-width'}: ${size}px; ${css} }`,
|
||||
...rest,
|
||||
} as BoxProps);
|
Loading…
Add table
Add a link
Reference in a new issue