import Uik from "../../ui-kit" import Title from "./Title" function Example () { return ( <> <Uik.Container> <Uik.Button text='Drop Confetti' fill size='large' onClick={() => Uik.dropConfetti() } /> <Uik.Button text='Drop Money' success size='large' onClick={() => Uik.dropMoney() } /> </Uik.Container> </> ) } const code = `<> <Uik.Button text='Drop Confetti' fill size='large' onClick={() => Uik.dropConfetti() } /> <Uik.Button text='Drop Money' success size='large' onClick={() => Uik.dropMoney() } /> </>` export default Example