Sha256: d933836b50ef7fff7d40538562584d7da64a65da317da1dd843a9b29afaff35f
Contents?: true
Size: 943 Bytes
Versions: 593
Compression:
Stored size: 943 Bytes
Contents
import React from "react" import { Button } from "../../" const ButtonHover = (props) => ( <div> <div> <Button hover={{ shadow: "deep" }} marginRight='lg' marginTop='xl' onClick={() => alert("button clicked!")} tabIndex={0} text='Shadow Deep' {...props} />{" "} <Button hover={{ shadow: "deeper" }} marginRight='lg' marginTop='xl' onClick={() => alert("button clicked!")} tabIndex={0} text='Shadow Deeper' variant='secondary' {...props} />{" "} <Button hover={{ shadow: "deepest" }} marginRight='lg' marginTop='xl' onClick={() => alert("button clicked!")} tabIndex={0} text='Shadow Deepest' variant='link' {...props} /> </div> </div> ) export default ButtonHover
Version data entries
593 entries across 593 versions & 2 rubygems