import React from "react"
import { Button } from "../../"
const ButtonHover = (props) => (
alert("button clicked!")}
tabIndex={0}
text='Shadow Deep'
{...props}
/>{" "}
alert("button clicked!")}
tabIndex={0}
text='Shadow Deeper'
variant='secondary'
{...props}
/>{" "}
alert("button clicked!")}
tabIndex={0}
text='Shadow Deepest'
variant='link'
{...props}
/>
alert("button clicked!")}
tabIndex={0}
text='Scale Small'
{...props}
/>{" "}
alert("button clicked!")}
tabIndex={0}
text='Scale Medium'
variant='secondary'
{...props}
/>{" "}
alert("button clicked!")}
tabIndex={0}
text='Scale Large'
variant='link'
{...props}
/>
alert("button clicked!")}
tabIndex={0}
text='Multiple Attributes'
{...props}
/>{" "}
alert("button clicked!")}
tabIndex={0}
text='Multiple Attributes'
variant='secondary'
{...props}
/>{" "}
alert("button clicked!")}
tabIndex={0}
text='Multiple Attributes'
variant='link'
{...props}
/>
)
export default ButtonHover