import React from 'react'; import styled from 'styled-components/native'; import { Box, IIconProps, Icon, Text, ITextProps } from '../../primitives'; import { CloseButton } from '../../composites'; import { usePropsConfig } from '../../../theme'; export { CloseButton as TagCloseButton }; import type { ITagProps } from './props'; const StyledTag = styled(Box)({}); export const TagLabel = (props: ITextProps) => { return ; }; export const TagLeftIcon = (props: IIconProps) => { return ; }; export const TagRightIcon = (props: IIconProps) => { return ; }; const Tag = ({ style, ...props }: ITagProps) => { let newProps = usePropsConfig('Tag', props); return ; }; export default Tag;