import { Stack, Image, Text, useColorModeValue } from "@chakra-ui/react"; import type { FunctionComponent } from "react"; interface HighlightProps { label: string; color?: string; icon?: string; } export const Highlight: FunctionComponent = ({ label, color, icon, }: HighlightProps) => { const brightness = useColorModeValue("none", "brightness(1.75)"); return ( {`${label} {label} ); };