@actinc/dls
Version:
Design Language System (DLS) for ACT & Encoura front-end projects.
22 lines • 831 B
JavaScript
/**
* 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.
*/
/* eslint-disable import/prefer-default-export */
import { Typography } from '@mui/material';
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 StyledTooltipText = styled(Typography, {
name: DLS_COMPONENT_NAMES.STACKED_BAR_CHART,
slot: DLS_COMPONENT_SLOT_NAMES[DLS_COMPONENT_NAMES.STACKED_BAR_CHART]
.TOOLTIP_TEXT,
})(function (_a) {
var theme = _a.theme;
return ({
fontSize: theme.typography.body1.fontSize,
});
});
//# sourceMappingURL=styles.js.map