# Box


## Props

```javascript
showShadow: {
    type: Boolean,
    default: false,
}

shadowBottom: {
    type: Boolean,
    default: true,
}
```

## Interface 

```typescript
IBox {
    showShadow: boolean;
    shadowBottom: boolean;
}
```