import dividerProps from '!!ts-docgen-loader!./props.tsx';

### Конфигурация темы на уровне проекта

```ts
// src/lib/theme.ts
import { configureRootTheme } from '@yandex-lego/components/Theme'
import { theme } from '@yandex-lego/components/Theme/presets/default'

configureRootTheme({ theme })
```

### Использование компонента

```ts
// src/App.ts
import React from 'react'
import { Divider } from '@yandex-lego/components/Divider'

const App = () => {
  return (
    <>
      Content
      <Divider style={{ margin: '8px 0' }} />
      Content
    </>
  )
}
```

### Props

<PropsTable props={dividerProps} />
