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/shorthands": "1.0.15",
|
||||
"@tamagui/theme-base": "1.0.15",
|
||||
"@status-im/icons": "*",
|
||||
"tamagui": "1.0.15"
|
||||
},
|
||||
"devDependencies": {
|
||||
|
|
|
@ -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>
|
||||
)
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue