import React from 'react' import {View} from 'react-native' import {atoms as a} from '#/alf' import { Button, ButtonColor, ButtonIcon, ButtonText, ButtonVariant, } 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'].map( color => ( {['solid', 'outline', 'ghost'].map(variant => ( ))} ), )} {['gradient_sky', 'gradient_midnight', 'gradient_sunrise'].map( name => ( ), )}
) }