UNPKG

@netdata/netdata-ui

Version:

netdata UI kit

26 lines (22 loc) 581 B
import React from "react" import Flex from "@/components/templates/flex" import ProgressBar from "." export const Basic = () => ( <Flex width="300px"> <ProgressBar width="80%" color={["blue", "aquamarine"]} background={["purple", "lilac"]} /> </Flex> ) export const WithValue = () => ( <Flex width="300px"> <ProgressBar value={[ { color: ["blue", "indigo"], width: "20%" }, { color: ["green", "limeGreen"], width: "60%" }, ]} background={["yellow", "seaBuckthorn"]} /> </Flex> ) export default { component: ProgressBar, }