import { Progress as Kobalte } from "@kobalte/core/progress" import { Show, splitProps } from "solid-js" import type { ComponentProps, ParentProps } from "solid-js" export interface ProgressProps extends ParentProps> { hideLabel?: boolean showValueLabel?: boolean } export function Progress(props: ProgressProps) { const [local, others] = splitProps(props, ["children", "class", "classList", "hideLabel", "showValueLabel"]) return (
{local.children}
) }