remove circle

This commit is contained in:
Pavel Prichodko 2023-01-23 14:35:48 +01:00
parent 04762e196f
commit 59b70af321
No known key found for this signature in database
GPG Key ID: 0EB8D75C775AB6F1
1 changed files with 0 additions and 42 deletions

View File

@ -1,42 +0,0 @@
import { Stack, styled } from '@tamagui/core'
export const Circle = styled(Stack, {
// access your tokens and theme values easily with $ props
backgroundColor: 'red',
borderRadius: '100%',
width: 100,
height: 100
// borderRadius: '$4',
// // media and pseudo styles - this would take 15+ lines of brittle JS in RN
// $gtSm: {
// pressStyle: {
// borderRadius: '$6'
// }
// },
// variants: {
// // define variants <Circle pin="top" />
// // these will flatten, even when nesting multiple styled() calls
// pin: {
// top: {
// position: 'absolute',
// top: 0
// }
// },
// size: {
// // functional variants give incredible power and save bundle size
// '...size': (size, { tokens }) => {
// return {
// width: tokens.size[size] ?? size,
// height: tokens.size[size] ?? size
// }
// }
// }
// } as const
})