mirror of
https://github.com/outline/outline.git
synced 2026-04-21 16:59:05 -05:00
2c52a8cb8b
Co-authored-by: Tom Moor <tom.moor@gmail.com>
12 lines
196 B
JavaScript
12 lines
196 B
JavaScript
// @flow
|
|
import styled from "styled-components";
|
|
|
|
const MenuIconWrapper = styled.span`
|
|
width: 24px;
|
|
height: 24px;
|
|
margin-right: 6px;
|
|
margin-left: -4px;
|
|
`;
|
|
|
|
export default MenuIconWrapper;
|