(props: ProgressViewProps)
| 8 | export interface ProgressViewProps extends HTMLProps<'span'>, ProgressViewBaseProps {} |
| 9 | |
| 10 | export const ProgressView = (props: ProgressViewProps) => { |
| 11 | const [state, localProps] = createSplitProps<ViewProps>()(props, ['state']) |
| 12 | const api = useProgressContext() |
| 13 | const mergedProps = mergeProps(() => api().getViewProps(state), localProps) |
| 14 | |
| 15 | return <ark.span {...mergedProps} /> |
| 16 | } |
nothing calls this directly
no test coverage detected