import type { ReactNode } from 'react'
import React from 'react'
import { shadows, SPACING_6, SPACING_8, SPACING_4 } from '@toptal/picasso-utils'
import { Container, Typography, Grid } from '@toptal/picasso'
const Example = () => (
)
interface ShadowBoxProps {
shadow: string
index: number
description?: ReactNode
}
const ShadowBox = ({ index, shadow, description }: ShadowBoxProps) => (
{index}
{description}
)
export default Example