import React from 'react'; import { View } from 'react-native'; import styled from 'styled-components/native'; import { border, color, flexbox, layout, space } from 'styled-system'; import { customBorder, customBackground, customOutline, customLayout, customExtra, customShadow, } from '../../../utils/customProps'; import type { IDividerProps } from './props'; import { usePropsConfig } from '../../../theme'; const StyledDivider = styled(View)( color, space, layout, flexbox, border, customBorder, customBackground, customOutline, customShadow, customExtra, customLayout ); const Divider = ({ style, orientation, ...props }: IDividerProps) => { let orientationProps = orientation === 'vertical' ? { width: 0, height: '100%', } : { width: '100%', height: 0, }; let newProps = usePropsConfig('Divider', props); return ; }; export default Divider; export type { IDividerProps };