@actinc/dls
Version:
Design Language System (DLS) for ACT & Encoura front-end projects.
33 lines • 3.02 kB
TypeScript
/**
* Copyright (c) ACT, Inc. and its affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/
import { ListItemProps, ListItemTextProps, PaperProps } from '@mui/material';
interface StyledListItemProps extends ListItemProps {
chartWidth?: number | string;
}
interface StyledListItemTextProps extends ListItemTextProps {
chartHeight?: number | string;
chartLegendTextFontSize?: number | string;
chartLegendTextFontSizeSmall?: number | string;
chartWidth?: number | string;
}
interface StyledPaperProps extends PaperProps {
chartWidth?: number | string;
index: number;
optionsLength?: number;
showAsSquare?: boolean;
theme?: any;
}
interface StyledUlType {
numberOfItems: number;
}
export declare const StyledUl: import("@emotion/styled").StyledComponent<import("@mui/system").MUIStyledCommonProps<import("@mui/material").Theme> & StyledUlType, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLUListElement>, HTMLUListElement>, {}>;
export declare const StyledListItem: import("@emotion/styled").StyledComponent<import("@mui/material").ListItemOwnProps & import("@mui/material/OverridableComponent").CommonProps & Omit<import("react").DetailedHTMLProps<import("react").LiHTMLAttributes<HTMLLIElement>, HTMLLIElement>, "children" | "classes" | "className" | "style" | "sx" | "components" | "componentsProps" | "slots" | "slotProps" | "alignItems" | "dense" | "disableGutters" | "divider" | "ContainerComponent" | "ContainerProps" | "disablePadding" | "secondaryAction"> & import("@mui/system").MUIStyledCommonProps<import("@mui/material").Theme> & StyledListItemProps, {}, {}>;
export declare const StyledListItemIcon: import("@emotion/styled").StyledComponent<import("@mui/material").ListItemIconProps & import("@mui/system").MUIStyledCommonProps<import("@mui/material").Theme>, {}, {}>;
export declare const StyledPaper: import("@emotion/styled").StyledComponent<import("@mui/material").PaperOwnProps & import("@mui/material/OverridableComponent").CommonProps & Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "children" | "classes" | "className" | "style" | "elevation" | "square" | "sx" | "variant"> & import("@mui/system").MUIStyledCommonProps<import("@mui/material").Theme> & StyledPaperProps, {}, {}>;
export declare const StyledListItemText: import("@emotion/styled").StyledComponent<Pick<ListItemTextProps<import("react").ElementType<any, keyof import("react").JSX.IntrinsicElements>, import("react").ElementType<any, keyof import("react").JSX.IntrinsicElements>>, keyof ListItemTextProps<import("react").ElementType<any, keyof import("react").JSX.IntrinsicElements>, import("react").ElementType<any, keyof import("react").JSX.IntrinsicElements>>> & import("@mui/system").MUIStyledCommonProps<import("@mui/material").Theme> & StyledListItemTextProps, {}, {}>;
export {};
//# sourceMappingURL=styles.d.ts.map