const IconAction: FC<IconActionProps> = ({ onPress }) => {
  return (
    <Container alignSelf="center">
      <Icon icon="cross" background="red" onPress={onPress} />
    </Container>