@cimpress/react-components
Version:
React components to support the MCP styleguide
16 lines • 418 B
TypeScript
import { CSSProperties } from 'react';
export interface PublicComponentProps {
/**
* Class name to be applied on the root element
*/
className?: string;
/**
* Inline styles to be applied on the root element
*/
style?: CSSProperties;
/**
* Data attribute for testing to be applied on the root element
*/
'data-testid'?: string;
}
//# sourceMappingURL=types.d.ts.map