export interface Props { type?: "good" | "bad", direction?: "up" | "down", text?: string, className?: string, children?: any } const Trend = ({ type = "good", direction = "up", text, children, className }: Props): JSX.Element => (