Hi, Im trying to import an icon library for my webpage but when i try to call on said library i dont get anything.
@tailwind base;
@tailwind components;
@tailwind utilities;
@import url('https://unpkg.com/[email protected]/icons/css/remove.css');
"use client";
export default function Searchbar({ onValueChange }) {
const handleInputChange = (e) => {
onValueChange(e);
};
return (
<div className="">
<input
className="text-[black]"
type="text"
placeholder="Search..."
onChange={(e) => handleInputChange(e.target.value)}
/>
<span className="gg-remove">Test</span>
</div>
);
}
any help is appreciated