Sha256: 310126f923429381359f0dd0eb240f983e51abb65bb777cd6e50c8ddd9c25442

Contents?: true

Size: 393 Bytes

Versions: 12

Compression:

Stored size: 393 Bytes

Contents

import React from 'react';
import PropTypes from 'prop-types';
import { Title } from '@patternfly/react-core';

export const WizardTitle = ({ title, ...props }) => (
  <Title
    ouiaId="wizard-title"
    headingLevel="h2"
    className="wizard-title"
    {...props}
  >
    {title}
  </Title>
);

WizardTitle.propTypes = {
  title: PropTypes.string.isRequired,
};
export default WizardTitle;

Version data entries

12 entries across 12 versions & 1 rubygems

Version Path
foreman_remote_execution-14.1.1 webpack/JobWizard/steps/form/WizardTitle.js
foreman_remote_execution-14.1.0 webpack/JobWizard/steps/form/WizardTitle.js
foreman_remote_execution-14.0.2 webpack/JobWizard/steps/form/WizardTitle.js
foreman_remote_execution-14.0.1 webpack/JobWizard/steps/form/WizardTitle.js
foreman_remote_execution-13.2.6 webpack/JobWizard/steps/form/WizardTitle.js
foreman_remote_execution-14.0.0 webpack/JobWizard/steps/form/WizardTitle.js
foreman_remote_execution-13.2.5 webpack/JobWizard/steps/form/WizardTitle.js
foreman_remote_execution-13.2.4 webpack/JobWizard/steps/form/WizardTitle.js
foreman_remote_execution-13.2.3 webpack/JobWizard/steps/form/WizardTitle.js
foreman_remote_execution-13.2.2 webpack/JobWizard/steps/form/WizardTitle.js
foreman_remote_execution-13.2.1 webpack/JobWizard/steps/form/WizardTitle.js
foreman_remote_execution-13.2.0 webpack/JobWizard/steps/form/WizardTitle.js