import {Fragment} from 'react' import {View} from 'react-native' import {atoms as a} from '#/alf' import { Button, type ButtonColor, ButtonIcon, type ButtonSize, 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 {Text} from '#/components/Typography' export function Buttons() { return ( Buttons {[ 'primary', 'secondary', 'secondary_inverted', 'negative', 'primary_subtle', 'negative_subtle', ].map(color => ( {['tiny', 'small', 'large'].map(size => ( color={color} size={size} ))} ))} ) }