import { SmartButtonGhostIcon, SmartButtonHoverMultilayersIcon, SmartButtonHoverShineIcon, SmartButtonHoverRaiseShadowIcon, SmartButtonHoverGradShadowIcon, SmartButtonHoverFlipIcon, SmartButtonDefaultIcon, SmartButtonHoverSlideRightIcon, SmartButtonHoverSlideSkewIcon, SmartButtonHoverSlidTopIcon, SmartButtonHoverNeoFollowIcon, SmartButtonHoverDrawOutlineIcon, } from "../../icons/icons"; const hoverEffectsItems = (buttonStyle, hoverEffects) => { let effect = []; if (buttonStyle === "default") { effect = [ { icon: , label: "Default", value: "defaultHover", }, { icon: , label: "Raise Shadow", value: "raiseShadow", type: "pro", demoLink: "https://wpsmartpost.com/blocks/#demoId3588", }, { icon: , label: "Grad Shadow", value: "gradShadow", type: "pro", demoLink: "https://wpsmartpost.com/blocks/#demoId3588", }, { icon: , label: "Shine", value: "shine", type: "pro", demoLink: "https://wpsmartpost.com/blocks/#demoId3588", }, { icon: , label: "Multi-layers", value: "multiLayers", type: "pro", demoLink: "https://wpsmartpost.com/blocks/#demoId3588", }, { icon: , label: "Flip", value: "flip", type: "pro", demoLink: "https://wpsmartpost.com/blocks/#demoId3588", }, ]; } else if (buttonStyle === "ghost") { effect = [ { icon: , label: "Default", value: "ghostDefault", }, { icon: , label: "Slide Right", value: "slideRight", type: "pro", demoLink: "https://wpsmartpost.com/blocks/#demoId3588", }, { icon: , label: "Slide Skew", value: "slideSkew", type: "pro", demoLink: "https://wpsmartpost.com/blocks/#demoId3588", }, { icon: , label: "Slide Top", value: "slideTop", type: "pro", demoLink: "https://wpsmartpost.com/blocks/#demoId3588", }, { icon: , label: "Neo Follow", value: "neoFollow", type: "pro", demoLink: "https://wpsmartpost.com/blocks/#demoId3588", }, { icon: , label: "Draw Outline", value: "drawOutline", type: "pro", demoLink: "https://wpsmartpost.com/blocks/#demoId3588", }, ]; } return effect; }; export default hoverEffectsItems;