import { Box, Flex, Link } from '@chakra-ui/react'; import HackerNewsIcon from 'components/icons/hackernews-square.svg'; import FacebookIcon from 'components/icons/facebook-square.svg'; import TwitterIcon from 'components/icons/twitter-square.svg'; import RedditIcon from 'components/icons/reddit-square.svg'; import { Icon } from '@chakra-ui/icons'; import { getFacebookShareUrl, getHnShareUrl, getRedditShareUrl, getTwitterShareUrl } from '../lib/url'; type ShareIconProps = { text: string; url: string; } export function ShareIcons(props: ShareIconProps) { const { text, url } = props; return ( ); }