wix-style-react
Version:
15 lines (14 loc) • 561 B
JavaScript
export const playground = `
<ThemeProvider theme={theme()}>
<Layout cols={2} gap="10px" justifyItems="center">
<Cell>
<CircularProgressBar showProgressIndication label="5/5" value={100} />
<CircularProgressBar showProgressIndication label="2/5" value={40} />
<Box height={56} width={112} backgroundColor="D10">
<CircularProgressBar light showProgressIndication label="2/5" value={100} />
<CircularProgressBar light showProgressIndication label="2/5" value={40} />
</Box>
</Cell>
</Layout>
</ThemeProvider>
`;