I am using Tailwind v3 and hero icons in a react project.
import { PlusCircleIcon } from '@heroicons/react/solid';
import { FunctionComponent } from 'react';
interface HeaderProps {
title: string;
}
export const Header: FunctionComponent<HeaderProps> = ({ title }) => {
return (
<nav className="flex justify-between items-center">
<h1 className="text-white text-7xl font-bold pt-2">{title}</h1>
<PlusCircleIcon className="h-14 w-14 text-accent shadow-sm shadow-white" />
</nav>
);
};
How do I apply shadow color around the circle?