Back

Heartbeat Button

Step 1. Add this to your

tailwind.config.js

tailwind.config.js
module.exports = {
  theme: {
    extend: {
      animation: {
        buttonheartbeat: 'buttonheartbeat 2s infinite ease-in-out',
      },
      keyframes: {
        buttonheartbeat: {
          '0%': {
            'box-shadow': '0 0 0 0 theme("colors.red.500")',
            transform: 'scale(1)',
          },
          '50%': {
            'box-shadow': '0 0 0 7px theme("colors.red.500/0")',
            transform: 'scale(1.05)',
          },
          '100%': {
            'box-shadow': '0 0 0 0 theme("colors.red.500/0")',
            transform: 'scale(1)',
          },
        },
      },
    },
  },
}

Step 2. Use the component ✨

HeartbeatButton.js
import React from 'react'

const HeartbeatButton = () => {
  return (
    <div>
      <button className="m-9 animate-buttonheartbeat rounded-md bg-red-500 px-4 py-1 text-sm font-semibold text-white">
        SyntaxUI
      </button>
    </div>
  )
}

export default HeartbeatButton
SyntaxUI
PRO

Build Faster, Launch Sooner!

Get Premium Blocks and Templates for your next project on SyntaxUI Pro ↗