feat: mobile workspaces (#1093)

This commit is contained in:
Vardan Hakobyan
2022-06-21 15:42:43 +04:00
committed by GitHub
parent 1f903f17d1
commit 7d60dfee73
71 changed files with 599 additions and 317 deletions

View File

@@ -7,10 +7,10 @@ type Props = {
}
export const Circle = styled.View<Props>`
width: ${props => props.size ?? 12}px;
height: ${props => props.size ?? 12}px;
border-radius: ${props => (props.size ?? 12) / 2}px;
background-color: ${props => props.backgroundColor};
border-color: ${props => props.borderColor};
width: ${(props) => props.size ?? 12}px;
height: ${(props) => props.size ?? 12}px;
border-radius: ${(props) => (props.size ?? 12) / 2}px;
background-color: ${(props) => props.backgroundColor};
border-color: ${(props) => props.borderColor};
border-width: 1px;
`