(props: Omit<TriggerProps, "direction">)
| 225 | const CarouselPrevTrigger = (props: Omit<TriggerProps, "direction">) => <Trigger {...props} direction="prev" />; |
| 226 | |
| 227 | const CarouselNextTrigger = (props: Omit<TriggerProps, "direction">) => <Trigger {...props} direction="next" />; |
| 228 | |
| 229 | interface CarouselIndicatorRenderProps { |
| 230 | isSelected: boolean; |
nothing calls this directly
no outgoing calls
no test coverage detected