Migrate to a monorepo structure (#2909)
This commit is contained in:
@ -0,0 +1,14 @@
|
||||
import { css } from '@emotion/react';
|
||||
import styled from '@emotion/styled';
|
||||
|
||||
import { MenuItem } from '@/ui/navigation/menu-item/components/MenuItem';
|
||||
|
||||
const StyledCreateNewButton = styled(MenuItem)<{ hovered: boolean }>`
|
||||
${({ hovered, theme }) =>
|
||||
hovered &&
|
||||
css`
|
||||
background: ${theme.background.transparent.light};
|
||||
`}
|
||||
`;
|
||||
|
||||
export const CreateNewButton = StyledCreateNewButton;
|
||||
Reference in New Issue
Block a user