A design system in a box.
hip-ui.tngl.io/docs/introduction
1import * as stylex from "@stylexjs/stylex";
2
3import { ProgressBar } from "../../components/progress-bar";
4
5const styles = stylex.create({
6 wrapper: {
7 width: "min(100%, 300px)",
8 },
9});
10
11export function WithoutLabel() {
12 return (
13 <div {...stylex.props(styles.wrapper)}>
14 <ProgressBar value={30} showValueLabel={false} aria-label="Progress" />
15 </div>
16 );
17}