import styled from '@emotion/styled'; interface IHorizontal { horizontal: boolean; } export const OrgTreeContainer = styled.div` display: block; padding: 15px; `; export const OrgTree = styled.div` display: table; text-align: center; &:before, &:after { content: ''; display: table; } &:after { clear: both; } `;