Feadback

Like our service?

Installation

Make Utils.ts file in lib and paste the code from Step-2

1

Install the package if you do not have it.

npm i framer-motion lucide-react
2

Copy and paste the following code into your project.

import { type ClassValue, clsx } from "clsx"
import { twMerge } from "tailwind-merge"

export function cn(...inputs: ClassValue[]) {
  return twMerge(clsx(inputs))
}
3

Create feedback component & paste the code