add @status-im/icons dependency
This commit is contained in:
parent
39b3d1ca11
commit
9fbbe267b5
|
@ -29,6 +29,7 @@
|
||||||
"@tamagui/react-native-media-driver": "1.0.15",
|
"@tamagui/react-native-media-driver": "1.0.15",
|
||||||
"@tamagui/shorthands": "1.0.15",
|
"@tamagui/shorthands": "1.0.15",
|
||||||
"@tamagui/theme-base": "1.0.15",
|
"@tamagui/theme-base": "1.0.15",
|
||||||
|
"@status-im/icons": "*",
|
||||||
"tamagui": "1.0.15"
|
"tamagui": "1.0.15"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
|
|
|
@ -1,15 +1,15 @@
|
||||||
import { Stack } from 'tamagui'
|
import { Stack } from 'tamagui'
|
||||||
|
|
||||||
import { Text } from '../../typography'
|
import { Paragraph } from '../../typography'
|
||||||
|
|
||||||
interface Props {}
|
interface Props {
|
||||||
|
onClick: VoidFunction
|
||||||
export const Actions = (props: Props) => {
|
}
|
||||||
const {} = props
|
|
||||||
|
|
||||||
|
export const Actions = (_props: Props) => {
|
||||||
return (
|
return (
|
||||||
<Stack position="absolute" top={0} right={0}>
|
<Stack position="absolute" top={0} right={0}>
|
||||||
<Text>actions</Text>
|
<Paragraph>actions</Paragraph>
|
||||||
</Stack>
|
</Stack>
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue