@nexusui/components
Version:
These are custom components specially-developed for NexusUI applications. They will make your life easier by giving you out-of-the-box implementations for various high-level UI elements that you can drop directly into your application.
23 lines (22 loc) • 536 B
TypeScript
import { SxProps, Theme } from '@mui/material/styles';
declare const styles: {
[key: string]: SxProps<Theme>;
};
export declare const linkStyle: (isMinWidth: boolean) => {
cursor: string;
'&:hover': {
textDecoration: string;
};
'&:not(:first-of-type)': {
ml: number;
pl: number;
borderLeft: number;
borderColor: string;
} | {
ml?: undefined;
pl?: undefined;
borderLeft?: undefined;
borderColor?: undefined;
};
};
export default styles;