@intersect.mbo/govtool-delegation-pillar
Version:
Delegation Pillar of the GovTool project
12 lines (11 loc) • 411 B
TypeScript
/// <reference types="react" />
import { SxProps } from '@mui/material';
export type LinkWithIconProps = {
label: string;
onClick: () => void;
icon?: JSX.Element;
sx?: SxProps;
cutWithEllipsis?: boolean;
dataTestId?: string;
};
export declare const LinkWithIcon: ({ dataTestId, label, onClick, icon, sx, cutWithEllipsis, }: LinkWithIconProps) => import("react/jsx-runtime").JSX.Element;