Sha256: 6f355895701b3744e85e584d835e3433ca93cb518b9902e688c064521e10be36
Contents?: true
Size: 352 Bytes
Versions: 57
Compression:
Stored size: 352 Bytes
Contents
import React from 'react'; import PropTypes from 'prop-types'; import { Title } from '@patternfly/react-core'; export const WizardTitle = ({ title, ...props }) => ( <Title headingLevel="h2" className="wizard-title" {...props}> {title} </Title> ); WizardTitle.propTypes = { title: PropTypes.string.isRequired, }; export default WizardTitle;
Version data entries
57 entries across 57 versions & 1 rubygems