Button
import {Button} from 'iconic-components'
<Button
type='primary'
label='texto'
onPress={() => handleLoading()}
/>
Button Loading
import {Button} from 'iconic-components'
<Button
type='primary'
label='loading'
onPress={() => handleLoading()}
loading={loading}
/>
Button Icon
import {Button} from 'iconic-components'
<Button
type='primary'
label='loading'
onPress={() => handleLoading()}
icon={<IconDownload style={{ marginRight: 5 }} />}
/>