From 59b70af3218eeaf2c5cbf03d48e6c806c302e96b Mon Sep 17 00:00:00 2001 From: Pavel Prichodko <14926950+prichodko@users.noreply.github.com> Date: Mon, 23 Jan 2023 14:35:48 +0100 Subject: [PATCH] remove circle --- apps/next/components/circle.tsx | 42 --------------------------------- 1 file changed, 42 deletions(-) delete mode 100644 apps/next/components/circle.tsx diff --git a/apps/next/components/circle.tsx b/apps/next/components/circle.tsx deleted file mode 100644 index 73779503..00000000 --- a/apps/next/components/circle.tsx +++ /dev/null @@ -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 - - // // 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 -})