@wix/design-system
Version:
@wix/design-system
20 lines • 660 B
JavaScript
import React from 'react';
import { UserAdd } from '@wix/wix-ui-icons-common';
// This object should contain a mock value for each required prop of this component
export const requiredProps = {
label: 'Label',
children: React.createElement(UserAdd, null),
};
// This array should contain an object only for tests you wish to run on all compliance tests
const sharedTests = [
{
title: 'render',
props: {
...requiredProps,
},
},
];
export const testkitTests = [...sharedTests];
export const ssrTests = [...sharedTests];
export const a11yTests = [...sharedTests];
//# sourceMappingURL=ComposerButton.meta.js.map