@useloops/design-system
Version:
The official React based Loops design system
22 lines (19 loc) • 570 B
TypeScript
import { SxProps, Theme } from '@mui/material';
import { FunctionComponent } from 'react';
import { StyledLinkProps } from './StyledLink.js';
interface LinkProps {
children: React.ReactNode;
href?: string;
target?: string;
onClick?: StyledLinkProps['onClick'];
disabled?: boolean;
sx?: SxProps<Theme>;
underline?: 'none' | 'hover' | 'always' | undefined;
noWrap?: boolean;
component?: any;
rel?: any;
title?: string;
}
declare const Link: FunctionComponent<LinkProps>;
export { Link as default };
export type { LinkProps };