({ className, ...props }: ComponentPropsWithRef<"div">)
| 161 | }; |
| 162 | |
| 163 | const CarouselItem = ({ className, ...props }: ComponentPropsWithRef<"div">) => { |
| 164 | return <div role="group" aria-roledescription="slide" className={cx("min-w-0 shrink-0 grow-0 basis-full", className)} {...props} />; |
| 165 | }; |
| 166 | |
| 167 | interface TriggerRenderProps { |
| 168 | isDisabled: boolean; |
nothing calls this directly
no outgoing calls
no test coverage detected