mirror of
https://github.com/outline/outline.git
synced 2026-01-24 20:29:18 -06:00
12 lines
235 B
TypeScript
12 lines
235 B
TypeScript
import styled from "styled-components";
|
|
|
|
const MenuIconWrapper = styled.span`
|
|
width: 24px;
|
|
height: 24px;
|
|
margin-right: 6px;
|
|
margin-left: -4px;
|
|
color: ${({ theme }) => theme.textSecondary};
|
|
`;
|
|
|
|
export default MenuIconWrapper;
|