import {View} from 'react-native' import {atoms as a} from '#/alf' import { Button, type ButtonColor, ButtonIcon, ButtonText, } from '#/components/Button' import {ChevronLeft_Stroke2_Corner0_Rounded as ChevronLeft} from '#/components/icons/Chevron' import {Globe_Stroke2_Corner0_Rounded as Globe} from '#/components/icons/Globe' import {H1} from '#/components/Typography' export function Buttons() { return (

Buttons

{[ 'primary', 'secondary', 'secondary_inverted', 'negative', 'negative_secondary', ].map(color => ( ))}
) }