nixos-configs/modules/ags/gtk4/widget/misc/separator.ts
matt1432 a1caad618b
All checks were successful
Discord / discord commits (push) Has been skipped
feat(ags4): migrate lib and misc widgets
2025-01-25 02:10:42 -05:00

12 lines
273 B
TypeScript

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);