PromucFlow_constructor/app/client/src/components/editorComponents/PaneWrapper.tsx
Valera Melnikov f5a0e41f60
chore: update eslint and dependencies then fix revealed errors (#27908)
## Description
Update eslint and dependencies then fix revealed errors
2023-10-11 10:14:38 +03:00

13 lines
380 B
TypeScript

import styled from "styled-components";
import { Colors } from "constants/Colors";
export default styled.div`
background-color: ${Colors.GREY_1};
border-radius: ${(props) => props.theme.radii[0]}px;
box-shadow:
0px 0px 2px rgba(0, 0, 0, 0.2),
0px 2px 10px rgba(0, 0, 0, 0.1);
color: ${(props) => props.theme.colors.textOnDarkBG};
text-transform: capitalize;
`;