import React from 'react'; import { BadgeProps } from './types'; import styles from './Badge.styles'; import { Typography } from '../Typography'; const { DivStyled } = styles; const Badge: React.FC = ({ state = 'normal', text, textVariant = 'body16', ...props }) => { return ( {text} ); }; export default Badge;