UNPKG

@actinc/dls

Version:

Design Language System (DLS) for ACT & Encoura front-end projects.

29 lines 1.07 kB
/** * 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 { Typography } from '@mui/material'; import { common } from '@mui/material/colors'; import { styled } from '@mui/material/styles'; import DLS_COMPONENT_NAMES from "../../../constants/DLS_COMPONENT_NAMES"; import DLS_COMPONENT_SLOT_NAMES from "../../../constants/DLS_COMPONENT_SLOT_NAMES"; export var StyledDataLabelTypography = styled(Typography, { name: DLS_COMPONENT_NAMES.SCATTER_PLOT, slot: DLS_COMPONENT_SLOT_NAMES[DLS_COMPONENT_NAMES.SCATTER_PLOT] .SCATTER_TOOLTIP_LABEL, })({ color: common.black, }); export var StyledDataValueTypography = styled(Typography, { name: DLS_COMPONENT_NAMES.SCATTER_PLOT, slot: DLS_COMPONENT_SLOT_NAMES[DLS_COMPONENT_NAMES.SCATTER_PLOT] .SCATTER_TOOLTIP_TEXT, })(function (_a) { var theme = _a.theme; return ({ color: theme.palette.text.primary, }); }); //# sourceMappingURL=styles.js.map