import { Box, Flex } from "@chakra-ui/layout"; import { useMyTheme } from "hooks/common"; import Image from "next/image"; const HeaderBanner = ({ icon, title, subtitle, }: { icon: string; title: string; subtitle: string; }) => { const { secondaryBgColor, gray } = useMyTheme(); return ( {`${icon} {title} {subtitle} ); }; export default HeaderBanner;