import styled from "styled-components" export const Container = styled.div` font-size: 12px; ` export const TreeSelected = styled.div` background-color: #e0ecf5; ` export const ItemContainer = styled.div` display: flex; align-items: center; height: 30px; ` export const IconContainer = styled.div` display: flex; justify-content: center; align-items: center; width: 20px; height: 20px; color: #999; font-size: 14px; ` export const EventContainer = styled.div` margin-left: 5px; color: #0388a7; `