UNPKG

@kui-shell/plugin-client-common

Version:

Kui plugin that offers stylesheets

23 lines (22 loc) 616 B
import React from 'react'; import Props from '../model'; import '../../../../../web/scss/components/Card/PatternFly.scss'; interface State { isOpen: boolean; } export default class PatternflyCard extends React.PureComponent<Props, State> { constructor(props: Props); private renderDropDownItems; private cardActions; private icon; /** card actions, icon and custom header node will be situated in Card Head */ private header; /** card footer */ private footer; private title; private child; private body; private dataProps; render(): JSX.Element; } export {};