UNPKG

@swrve/core

Version:

Core set of Swrve UI Components

14 lines (9 loc) 269 B
import React from 'react' import { string, object, array, oneOfType } from 'prop-types' const Col = () => <col width={'50%'} /> Col.displayName = 'Col' Col.propTypes = { /** Custom className */ className: oneOfType([string, object, array]) } export default Col