UNPKG

@eccenca/gui-elements

Version:

Collection of low-level GUI elements like Buttons, Icons or Alerts. Also includes core styles for those elements.

22 lines (16 loc) 386 B
import React from 'react'; import PropTypes from 'prop-types'; import Alert from './Alert'; const Info = props => { const { children, ...otherProps } = props; return ( <Alert type="info" {...otherProps}> {children} </Alert> ); }; Info.propTypes = { children: PropTypes.node.isRequired, }; Info.displayName = 'Info'; export default Info;