Buttons
import React from 'react'
import { Button } from 'xf-material-components'
const YourFunction = () => {
return (
<Button>Hello World </Button>
<Button type="wide">Hello World</Button>
)
}
export default YourFunction