UNPKG

@intersect.mbo/govtool-delegation-pillar

Version:
12 lines (11 loc) 411 B
/// <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;