@wix/design-system
Version:
@wix/design-system
8 lines • 1.86 kB
JavaScript
export var errors = "<Layout>\n <Cell>\n <LinearProgressBar error value={20} />\n </Cell>\n <Cell>\n <Box backgroundColor=\"D10\">\n <LinearProgressBar light error value={20} />\n </Box>\n </Cell>\n <Cell>\n <LinearProgressBar showProgressIndication error errorMessage=\"some error\" value={20} />\n </Cell>\n</Layout>";
export var progressIndication = "<Layout>\n <Cell>\n <LinearProgressBar showProgressIndication value={0} />\n </Cell>\n <Cell>\n <LinearProgressBar showProgressIndication value={50} />\n </Cell>\n <Cell>\n <LinearProgressBar showProgressIndication value={100} />\n </Cell>\n</Layout>";
export var customLabel = "<Layout>\n <Cell>\n <LinearProgressBar value={37.6} label=\"47/125\" />\n </Cell>\n</Layout>";
export var themes = "<Layout>\n <Cell>\n <LinearProgressBar value={20} />\n </Cell>\n <Cell>\n <Box backgroundColor=\"D10\">\n <LinearProgressBar light value={20} />\n </Box>\n </Cell>\n</Layout>";
export var padding = "<Layout>\n <Cell>\n <Box>\n <LinearProgressBar value={20} padding={'none'} />\n </Box>\n </Cell>\n</Layout>";
export var minMax = "<Layout>\n <Cell>\n <LinearProgressBar showProgressIndication value={75} min={50} max={150} />\n </Cell>\n</Layout>";
export var prefixIndication = "<Layout>\n <Cell>\n <LinearProgressBar showProgressIndication value={60} prefixIndication={<Icons.Upload />} />\n </Cell>\n</Layout>";
export var skins = "<Layout>\n <Cell>\n <LinearProgressBar value={20} />\n </Cell>\n <Cell>\n <LinearProgressBar skin=\"warning\" value={20} />\n </Cell>\n <Cell>\n <LinearProgressBar skin=\"success\" value={20} />\n </Cell>\n <Cell>\n <LinearProgressBar skin=\"premium\" value={20} />\n </Cell>\n <Cell>\n <LinearProgressBar skin=\"neutral\" value={20} />\n </Cell>\n</Layout>";