@react-ui-org/react-ui
Version:
React UI is a themeable UI library for React apps.
49 lines (43 loc) • 1.01 kB
JSX
import PropTypes from 'prop-types';
import React from 'react';
import { withGlobalProps } from '../../providers/globalProps';
import { classNames } from '../../helpers/classNames/classNames';
import { transferProps } from '../../helpers/transferProps';
import styles from './Paper.module.scss';
export const Paper = ({
children,
muted,
raised,
...restProps
}) => (
<div
{...transferProps(restProps)}
className={classNames(
styles.root,
muted && styles.isRootMuted,
raised && styles.isRootRaised,
)}
>
{children}
</div>
);
Paper.defaultProps = {
muted: false,
raised: false,
};
Paper.propTypes = {
/**
* Content to be placed onto Paper.
*/
children: PropTypes.node.isRequired,
/**
* Visually suppress Paper.
*/
muted: PropTypes.bool,
/**
* Add shadow to pull the Paper above surface.
*/
raised: PropTypes.bool,
};
export const PaperWithGlobalProps = withGlobalProps(Paper, 'Paper');
export default PaperWithGlobalProps;