@mui/styles
Version:
MUI Styles - The legacy JSS-based styling solution of Material UI.
40 lines (35 loc) • 1.22 kB
TypeScript
import { DistributiveOmit, Overwrite } from '@mui/types';
import * as React from 'react';
import {
CreateCSSProperties,
StyledComponentProps,
WithStylesOptions,
} from '@mui/styles/withStyles';
import { DefaultTheme } from '../defaultTheme';
// We don't want a union type here (like React.JSXElementConstructor) in order to support mapped types.
export type StyledComponent<P extends {}> = (props: P) => React.ReactElement<P, any> | null;
/**
* @internal
*/
export type ComponentCreator<Component extends React.ElementType> = <
Theme = DefaultTheme,
Props extends {} = React.ComponentPropsWithoutRef<Component>,
>(
styles:
| CreateCSSProperties<Props>
| ((props: { theme: Theme } & Props) => CreateCSSProperties<Props>),
options?: WithStylesOptions<Theme>,
) => StyledComponent<
DistributiveOmit<
React.JSX.LibraryManagedAttributes<Component, React.ComponentProps<Component>>,
'classes' | 'className'
> &
StyledComponentProps<'root'> &
Overwrite<Props, { className?: string; theme?: Theme }>
>;
export interface StyledProps {
className: string;
}
export default function styled<Component extends React.ElementType>(
Component: Component,
): ComponentCreator<Component>;