Skip to content
Snippets Groups Projects
Unverified Commit bb24220a authored by Kamil Mielnik's avatar Kamil Mielnik Committed by GitHub
Browse files

Fix redundant isSmallAppBar prop warning (#48287)

parent 9e09a6d1
Branches
Tags
No related merge requests found
import { css } from "@emotion/react";
import styled from "@emotion/styled";
import { doNotForwardProps } from "metabase/common/utils/doNotForwardProps";
import Link from "metabase/core/components/Link";
export const LogoLink = styled(Link)<{ isSmallAppBar: boolean }>`
export const LogoLink = styled(Link, doNotForwardProps("isSmallAppBar"))<{
isSmallAppBar: boolean;
}>`
cursor: pointer;
display: flex;
align-items: center;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment