@kubit-ui-web/react-components
Version:
Kubit React Components is a customizable, accessible library of React web components, designed to enhance your application's user experience
36 lines • 1.16 kB
JavaScript
import { ValidationStatusState } from '../types/validationStatusTheme';
export const items = [
{
state: ValidationStatusState.SUCCESS,
text: { content: 'This is the first requirement' },
},
{
state: ValidationStatusState.ERROR,
text: { content: 'This is the second requirement with a long text for testing purposes' },
},
{
state: ValidationStatusState.SUCCESS,
text: { content: 'This is the thrid requirement' },
},
{
state: ValidationStatusState.DEFAULT,
text: { content: 'This is the fourth requirement with a long text for testing purposes' },
},
{
state: ValidationStatusState.DEFAULT,
text: { content: 'This is the fifth requirement' },
},
{
state: ValidationStatusState.ERROR,
text: { content: 'This is the sixth requirement' },
},
{
state: ValidationStatusState.DEFAULT,
text: { content: 'This is the seventh requirement' },
},
{
state: ValidationStatusState.DEFAULT,
text: { content: 'This is the eighth requirement' },
},
];
//# sourceMappingURL=list.js.map