// // Copyright 2023 DXOS.org // import '@dxos-theme'; import React from 'react'; import { Status } from './Status'; import { withTheme } from '../../testing'; export default { title: 'ui/react-ui-core/Status', component: Status, decorators: [withTheme], parameters: { chromatic: { disableSnapshot: false } }, }; export const Normal = (props: any) => { return (
); }; export const Indeterminate = (props: any) => { return (
); };