Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F113112107
Link.d.ts
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Thu, May 15, 04:07
Size
2 KB
Mime Type
text/x-java
Expires
Sat, May 17, 04:07 (2 d)
Engine
blob
Format
Raw Data
Handle
26162661
Attached To
rOACCT Open Access Compliance Check Tool (OACCT)
Link.d.ts
View Options
import * as React from 'react';
import { DistributiveOmit } from '@mui/types';
import { SxProps } from '@mui/system';
import { OverridableComponent, OverrideProps } from '../OverridableComponent';
import { Theme } from '../styles';
import { TypographyProps } from '../Typography';
import { LinkClasses } from './linkClasses';
export interface LinkTypeMap<P = {}, D extends React.ElementType = 'a'> {
props: P &
DistributiveOmit<LinkBaseProps, 'classes'> & {
/**
* The content of the component.
*/
children?: React.ReactNode;
/**
* Override or extend the styles applied to the component.
*/
classes?: Partial<LinkClasses>;
/**
* The color of the link.
* @default 'primary'
*/
color?: TypographyProps['color'];
/**
* The system prop that allows defining system overrides as well as additional CSS styles.
*/
sx?: SxProps<Theme>;
/**
* `classes` prop applied to the [`Typography`](/material-ui/api/typography/) element.
*/
TypographyClasses?: TypographyProps['classes'];
/**
* Controls when the link should have an underline.
* @default 'always'
*/
underline?: 'none' | 'hover' | 'always';
/**
* Applies the theme typography styles.
* @default 'inherit'
*/
variant?: TypographyProps['variant'];
};
defaultComponent: D;
}
/**
*
* Demos:
*
* - [Breadcrumbs](https://mui.com/material-ui/react-breadcrumbs/)
* - [Links](https://mui.com/material-ui/react-link/)
*
* API:
*
* - [Link API](https://mui.com/material-ui/api/link/)
* - inherits [Typography API](https://mui.com/material-ui/api/typography/)
*/
declare const Link: OverridableComponent<LinkTypeMap>;
export type LinkBaseProps = Omit<React.AnchorHTMLAttributes<HTMLAnchorElement>, 'color'> &
DistributiveOmit<TypographyProps, 'children' | 'component' | 'color' | 'ref' | 'variant'>;
export type LinkProps<
D extends React.ElementType = LinkTypeMap['defaultComponent'],
P = {},
> = OverrideProps<LinkTypeMap<P, D>, D>;
export default Link;
Event Timeline
Log In to Comment