export default function Example() {
  return (
    <Box
      css={{
        display: "flex",
        alignItems: "center",
        gap: "$050",
        color: theme.colors.signal,
      }}
    >
      <Icon size="$150" label="bookmark">
        <Info />
      </Icon>
      <p> Example of using current color</p>
    </Box>
  );
}