| 21 | } |
| 22 | |
| 23 | interface DynamicStep { |
| 24 | id: string |
| 25 | title: string |
| 26 | description: string |
| 27 | icon: |
| 28 | | React.ComponentType<{ className?: string }> |
| 29 | | React.ReactElement<{ className?: string }> |
| 30 | content: React.ReactNode |
| 31 | } |
| 32 | |
| 33 | interface DynamicToolbarExpandableProps { |
| 34 | steps: DynamicStep[] |
nothing calls this directly
no outgoing calls
no test coverage detected