import React from 'react'; import { theme } from '@veeqo/ui'; import { Bold, Icon, Notification, Glyph, } from '../../styled'; import { Pill, IconWrap, Wrap } from './styled'; import { SuccessPillsPropsType } from '../types'; const accentColor = theme.colors.secondary.green.base; const white = '#fff'; const Dark = ({ className, onClick, message }: SuccessPillsPropsType) => ( {message} ); export default Dark;