Skip to content
Snippets Groups Projects
Unverified Commit 925f8183 authored by Oisin Coveney's avatar Oisin Coveney Committed by GitHub
Browse files

Add emotion.d.ts (#33191)

parent 847bc00b
No related branches found
No related tags found
No related merge requests found
import styled from "@emotion/styled";
import { color } from "metabase/lib/colors";
export const SearchFilterWrapper = styled.div`
& > * {
border-bottom: 1px solid ${color("border")};
border-bottom: 1px solid ${({ theme }) => theme.colors.border[0]};
padding: 1.5rem 2rem;
margin: 0;
}
......
import "@emotion/react";
import type { MantineTheme } from "@mantine/core";
declare module "@emotion/react" {
// eslint-disable-next-line @typescript-eslint/no-empty-interface
export interface Theme extends MantineTheme {}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment