How to use the @patternfly/react-core.TextVariants.p function in @patternfly/react-core

To help you get started, we’ve selected a few @patternfly/react-core examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github apache / qpid-dispatch / console / react / src / common / pleaseWait.js View on Github external
render() {
    return (
      this.props.isOpen && (
        <div>
          <div id="topicCogWrapper">
            
            
            
          </div>
          
            
          
          
            
          
        </div>
      )
    );
  }
}
github kiali / kiali-ui / src / pages / IstioConfigDetails / IstioObjectDetails / DestinationRuleDetail.tsx View on Github external
&lt;&gt;
              
              {hasSubsets ? (
                
                  
                <table rows="{this.rowsSubset()}" aria-label="{'DestinationRule">
                  </table>
              ) : (
                
              )}
            
          
        
      
    );
  }
github 3scale / porta / portafly / src / pages / Applications.tsx View on Github external
'Developer',
          app.plan.name,
          app.created_at
        ]
      })
    )
  }

  return (
    &lt;&gt;
      
        
          
        
        
          
        
      

      
        {rows
          &amp;&amp; (
            
              
            <table rows="{rows}">
              </table>
          )}
      
    
  )
github kiali / kiali-ui / src / pages / Overview / OverviewPage.tsx View on Github external
let status: any = 'N/A';
    if (ns.validations &amp;&amp; !this.isNamespaceEmpty(ns)) {
      status = (
        
          
        
      );
    }
    return (
      &lt;&gt;
        
      
    );
  }
}
github syndesisio / syndesis / app / ui-react / packages / ui / src / Integration / CiCd / CiCdEditDialog.tsx View on Github external
public render() {
    return (
      <dialog data-testid="{'cicd-edit-dialog'}">
            <form>
              
              <div>
                <label>
                  {this.props.i18nInputLabel}
                </label>
                <div></div></div></form></dialog>
github kiali / kiali-ui / src / pages / ServiceDetails / ServiceInfo / ServiceInfoWorkload.tsx View on Github external
overviewLink(workload: WorkloadOverview) {
    return (
      <span>
        
          
        
      </span>
    );
  }
github fusor / mig-ui / src / app / plan / components / Wizard / VolumesForm.tsx View on Github external
const {
    setFieldValue,
    values,
    isPVError,
    isFetchingPVList,
    currentPlan,
    getPVResourcesRequest,
    pvResourceList,
    isFetchingPVResources
  } = props;

  return (
    
      
        
          
github kiali / kiali-ui / src / components / Validations / Validation.tsx View on Github external
render() {
    const validation = this.validation();
    const IconComponent = validation.icon;
    const hasMessage = !!this.props.message;
    if (hasMessage) {
      return (
        <div>
          
        </div>
      );
    } else {
      return ;
    }
  }
}