col

ReactElement col([

  1. Map<String, Object?>? props
])

Creates a <col> element.

Implementation

ReactElement col([Map<String, Object?>? props]) =>
    createElement('col'.toJS, props != null ? createProps(props) : null);