import React, {FC} from 'react'; import {TagStyle as S} from './styles/tag.style'; import {ITag, ITagAvatar, ITagClose, ITagCount, ITagTitle} from './tag.type'; const Tag: FC = (props) => { return ; }; const Title: FC = ({title, ...rest}) => { return ( {title} ); }; const Close: FC = (props) => { return ; }; const Count: FC = (props) => { return ; }; const Avatar: FC = (props) => { return ; }; /** * * @author Ali M. Sadeghi * */ export const TagComponent = Object.assign(Tag, { Title, Close, Count, Avatar, });