Skip to content
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion packages/compass-components/src/components/leafygreen.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ import LeafyGreenTextInput from '@leafygreen-ui/text-input';
import { SearchInput } from '@leafygreen-ui/search-input';
export { usePrevious, useMergeRefs } from '@leafygreen-ui/hooks';
import Toggle from '@leafygreen-ui/toggle';
import Tooltip from '@leafygreen-ui/tooltip';
import LGTooltip from '@leafygreen-ui/tooltip';
import {
H1,
H2,
Expand All @@ -92,6 +92,9 @@ import {
ComboboxOption,
ComboboxGroup,
} from '@leafygreen-ui/combobox';
import { withStackedComponentStyles } from '../hooks/use-stacked-component';

const Tooltip = withStackedComponentStyles(LGTooltip);

// 2. Wrap and make any changes/workaround to leafygreen components.
const Icon = ({
Expand Down
Loading