import React from 'react'; import { theme } from '@veeqo/ui'; import { Pill, Button, Text, Hint, Bold, Glyph, Wrap, Notification, } from '../styled'; const accentColor = theme.colors.secondary.blue.base; export interface InfoPropTypes { className: string; pageName?: string; onClick: () => void; } const Info = ({ className, onClick, pageName }: InfoPropTypes) => ( You are currently in a draft view Apply filters and create a custom view of your products ); export default Info;