UNPKG

@moderntribe/wme-ui

Version:

Components and hooks to build the best UX/UI admin wizards

13 lines 470 B
import React from 'react'; import { BoxProps } from '@mui/material'; import type { ChipProps } from '../chip'; export interface SetupCardHeaderProps extends BoxProps { title?: string; subheader?: string; chipText?: React.ReactNode | string; isComplete?: boolean; chipBackground?: ChipProps['color']; action?: any; } export default function SetupCardHeader(props: SetupCardHeaderProps): JSX.Element; //# sourceMappingURL=setup-card-header.d.ts.map