Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F101435901
TabScrollButton.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
Mon, Feb 10, 11:13
Size
1 KB
Mime Type
text/x-java
Expires
Wed, Feb 12, 11:13 (2 d)
Engine
blob
Format
Raw Data
Handle
24146481
Attached To
rOACCT Open Access Compliance Check Tool (OACCT)
TabScrollButton.d.ts
View Options
import * as React from 'react';
import { SxProps } from '@mui/system';
import { InternalStandardProps as StandardProps, Theme } from '..';
import { TabScrollButtonClasses } from './tabScrollButtonClasses';
export interface TabScrollButtonProps extends StandardProps<React.HTMLAttributes<HTMLDivElement>> {
/**
* The content of the component.
*/
children?: React.ReactNode;
/**
* Override or extend the styles applied to the component.
*/
classes?: Partial<TabScrollButtonClasses>;
/**
* The direction the button should indicate.
*/
direction: 'left' | 'right';
/**
* If `true`, the component is disabled.
*/
disabled?: boolean;
/**
* The component orientation (layout flow direction).
*/
orientation: 'horizontal' | 'vertical';
/**
* The system prop that allows defining system overrides as well as additional CSS styles.
*/
sx?: SxProps<Theme>;
}
/**
*
* Demos:
*
* - [Tabs](https://mui.com/material-ui/react-tabs/)
*
* API:
*
* - [TabScrollButton API](https://mui.com/material-ui/api/tab-scroll-button/)
*/
export default function TabScrollButton(props: TabScrollButtonProps): JSX.Element;
Event Timeline
Log In to Comment