All Downloads are FREE. Search and download functionalities are using the official Maven repository.

package.src.components.BackgroundImage.BackgroundImage.tsx Maven / Gradle / Ivy

Go to download

This library provides a set of common React components for use with the PatternFly reference implementation.

The newest version!
import React from 'react';

import { css } from '@patternfly/react-styles';
import styles from '@patternfly/react-styles/css/components/BackgroundImage/background-image';
import cssBackgroundImage from '@patternfly/react-tokens/dist/esm/c_background_image_BackgroundImage';

export interface BackgroundImageProps extends React.HTMLProps {
  /** The URL or file path of the image for the background */
  src: string;
  /** Additional classes added to the background image. */
  className?: string;
}

export const BackgroundImage: React.FunctionComponent = ({
  className,
  src,
  ...props
}: BackgroundImageProps) => (
  
); BackgroundImage.displayName = 'BackgroundImage';




© 2015 - 2024 Weber Informatics LLC | Privacy Policy