How to use the @patternfly/patternfly/components/Card/card.css.modifiers function in @patternfly/patternfly

To help you get started, we’ve selected a few @patternfly/patternfly 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 patternfly / patternfly-react / packages / patternfly-4 / react-core / src / components / Card / CardBody.js View on Github external
const CardBody = ({ children, className, component: Component, isFilled, ...props }) => (
  
    {children}
  
);
github patternfly / patternfly-react / packages / patternfly-4 / react-core / src / components / Card / Card.js View on Github external
const Card = ({ children, className, component: Component, isHoverable, ...props }) => (
  
    {children}
  
);