/* Example with @emotion/react */ import xw, { cx } from 'xwind' //"react native style" const styles = { button: xw` relative w-64 min-w-full flex justify-center py-2 px-4 border border-transparent text-sm leading-5 font-medium rounded-md text-white bg-gray-600 hover:bg-gray-500 focus[outline-none ring-4 ring-gray-400] active:bg-gray-700 transition duration-150 ease-in-out `, } const ButtonReact = ({ className, children, ...props }) => ( ) export default ButtonReact