Files
outline/app/components/ContextMenu/MenuIconWrapper.ts
Tom Moor 2358c3d13d refactor
2023-09-04 21:12:28 -04:00

13 lines
255 B
TypeScript

import styled from "styled-components";
import { s } from "@shared/styles";
const MenuIconWrapper = styled.span`
width: 24px;
height: 24px;
margin-right: 6px;
margin-left: -4px;
color: ${s("textSecondary")};
`;
export default MenuIconWrapper;