# Usage

`<ScrollPane />` is used to create a scrollable area.

`import { ScrollPane } from "aptible-design-kit"`

```jsx
<ScrollPane>
  {children}
</ScrollPane>
```

## Props

| Prop | Type | Required | Default Value | Description |
|:--- |:--- |:--- |:--- |:--- |
| children | ReactNode | Yes | null | Child node |
| disabled | boolean | No | false | Disable scrolling, does not apply `overflow-y-auto` classname |
