UNPKG

epn-ui

Version:

Дизайн система кабинета ВМ

21 lines (20 loc) 599 B
import React from 'react'; import type { ColProps } from 'antd/es/grid/col'; export interface IColProps { className?: ColProps['className']; style?: ColProps['style']; flex?: ColProps['flex']; offset?: ColProps['offset']; order?: ColProps['order']; pull?: ColProps['pull']; push?: ColProps['push']; span?: ColProps['span']; xs?: ColProps['xs']; sm?: ColProps['sm']; md?: ColProps['md']; lg?: ColProps['lg']; xl?: ColProps['xl']; children: ColProps['children']; } declare const Col: React.FC<IColProps>; export default Col;