| 124 | |
| 125 | type InputProps = React.ComponentPropsWithoutRef<'input'> |
| 126 | interface BubbleInputProps extends Omit<InputProps, 'checked'> { |
| 127 | checked: boolean |
| 128 | control: HTMLElement | null |
| 129 | bubbles: boolean |
| 130 | } |
| 131 | |
| 132 | const BubbleInput = (props: BubbleInputProps) => { |
| 133 | const { control, checked, bubbles = true, ...inputProps } = props |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…