@moderntribe/wme-ui
Version:
Components and hooks to build the best UX/UI admin wizards
12 lines • 374 B
TypeScript
import type React from 'react';
import { LinkProps } from '@mui/material';
interface SetupCardListItemProps {
icon?: React.ReactNode;
title: string;
href?: string;
target?: string;
linkProps?: LinkProps;
}
export default function SetupCardListItem(props: SetupCardListItemProps): JSX.Element;
export {};
//# sourceMappingURL=setup-card-list-item.d.ts.map