UNPKG

asciitorium

Version:
12 lines (11 loc) 357 B
import { Component } from '../core/Component.js'; export class Row extends Component { constructor(props = {}) { super({ ...props, width: props.width ?? props.style?.width ?? 'fill', // Keep 'fill' for width as rows typically span horizontally layout: 'row', layoutOptions: {} }); } }