import React from 'react'; import { NativeBaseProvider, Button, extendTheme, Center, VStack, } from 'native-base'; export const Example = () => { const theme = extendTheme({ components: { Button: { variants: { rounded: ({ colorScheme }: any) => { return { bg: `${colorScheme}.500`, rounded: 'full', }; }, }, }, }, }); return (
); };