add @status-im/icons dependency

This commit is contained in:
Pavel Prichodko 2023-01-18 16:44:39 +01:00
parent 39b3d1ca11
commit 9fbbe267b5
No known key found for this signature in database
GPG Key ID: 0EB8D75C775AB6F1
2 changed files with 7 additions and 6 deletions

View File

@ -29,6 +29,7 @@
"@tamagui/react-native-media-driver": "1.0.15",
"@tamagui/shorthands": "1.0.15",
"@tamagui/theme-base": "1.0.15",
"@status-im/icons": "*",
"tamagui": "1.0.15"
},
"devDependencies": {

View File

@ -1,15 +1,15 @@
import { Stack } from 'tamagui'
import { Text } from '../../typography'
import { Paragraph } from '../../typography'
interface Props {}
export const Actions = (props: Props) => {
const {} = props
interface Props {
onClick: VoidFunction
}
export const Actions = (_props: Props) => {
return (
<Stack position="absolute" top={0} right={0}>
<Text>actions</Text>
<Paragraph>actions</Paragraph>
</Stack>
)
}