export default function Example() {
  const ShadowExample = styled("p", {
    padding: theme.space["100"],
    boxShadow: theme.shadows["300"], //Shadow example
    backgroundColor: theme.colors.secondary,
    color: theme.colors.onSecondary,
  });

  return <ShadowExample>Shadow Example</ShadowExample>;
}