import * as React from 'react'; import { css } from '@patternfly/react-styles'; import styles from '@patternfly/react-styles/css/components/AppLauncher/app-launcher'; export interface ApplicationLauncherTextProps extends React.HTMLProps { /** content rendered inside the text container */ children: React.ReactNode; /** Additional classes added to the text container */ className?: string; } export const ApplicationLauncherText: React.FunctionComponent = ({ className = '', children, ...props }: ApplicationLauncherTextProps) => ( {children} ); ApplicationLauncherText.displayName = 'ApplicationLauncherText';