docs: fix default imports to named imports in component docs

These auto-generated component docs had default imports from
'@superset/components' which only exposes named exports. Fixed
Slider, Tree, ProgressBar, TableCollection, and Tabs.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
Evan Rusackas
2026-02-23 11:40:22 -08:00
parent 770a23242c
commit ff9acbf617
5 changed files with 5 additions and 5 deletions

View File

@@ -212,7 +212,7 @@ function IconTabs() {
## Import
```tsx
import Tabs from '@superset/components';
import { Tabs } from '@superset/components';
```
---