(props)
| 162 | } |
| 163 | |
| 164 | function Button(props) { |
| 165 | let ref = props.buttonRef; |
| 166 | let {focusProps, isFocusVisible} = useFocusRing(); |
| 167 | let {buttonProps} = useButton(props, ref); |
| 168 | return ( |
| 169 | <button |
| 170 | {...mergeProps(buttonProps, focusProps)} |
| 171 | ref={ref} |
| 172 | className={classNames(ariaStyles, props.className, {focus: isFocusVisible})}> |
| 173 | {props.children} |
| 174 | </button> |
| 175 | ); |
| 176 | } |
| 177 | |
| 178 | function Resizer(props) { |
| 179 | let {column, layoutState, onResizeStart, onResize, onResizeEnd} = props; |
nothing calls this directly
no test coverage detected