bolt.diy/app/shared/components/ui/index.ts
KevIsDev 4d3222ee96 refactor: reorganize project structure by moving files to a more dev friendly setup
- Move stores/utils/types to their relative directories (i.e chat stores in chat directory)
- Move utility files to shared/utils
- Move component files to shared/components
- Move type definitions to shared/types
- Move stores to shared/stores
- Update import paths across the project
2025-06-16 15:33:59 +01:00

39 lines
1019 B
TypeScript

// Export all UI components for easier imports
// Core components
export * from './Badge';
export * from './Button';
export * from './Card';
export * from './Checkbox';
export * from './Collapsible';
export * from './Dialog';
export * from './IconButton';
export * from './Input';
export * from './Label';
export * from './ScrollArea';
export * from './Switch';
export * from './Tabs';
export * from './ThemeSwitch';
// Loading components
export * from './LoadingDots';
export * from './LoadingOverlay';
// New components
export * from './Breadcrumbs';
export * from './CloseButton';
export * from './CodeBlock';
export * from './EmptyState';
export * from './FileIcon';
export * from './FilterChip';
export * from './GradientCard';
export * from './RepositoryStats';
export * from './SearchInput';
export * from './SearchResultItem';
export * from './StatusIndicator';
export * from './TabsWithSlider';
// Tooltip components
export { default as WithTooltip } from './Tooltip';
export { Tooltip } from './Tooltip';