import { IconButton } from '@dormakaba/digital-reactnative-visual';
// single button
<IconButton
icon="icon-news"
onPress={() => {}}
>
text&icon
</IconButton>
// add as panel
<View style={{ flexDirection: 'row', justifyContent: 'space-between' }}>
<IconButton icon="icon-news" onPress={() => {}}>text&icon</IconButton>
<IconButton icon="icon-badge" onPress={() => {}}>text & icon</IconButton>
<IconButton icon="icon-admin" primary onPress={() => {}}>text & icon</IconButton>
<IconButton icon="icon-door" disabled onPress={() => {}}>text&icon&tolongforeverything</IconButton>
</View>