import React from 'react'; import { theme } from '@veeqo/ui'; import { Pill, Bold, Icon, Wrap, Notification, Glyph, } from '../../styled'; import { SuccessPillsPropsType } from '../types'; const accentColor = theme.colors.secondary.green.base; const Light = ({ onClick, viewName }: SuccessPillsPropsType) => ( {`${viewName} view created`} ); export default Light;