6 lines
171 B
TypeScript
6 lines
171 B
TypeScript
import { BoltIcon } from "@heroicons/react/20/solid";
|
|
|
|
export function TriggerIcon({ className }: { className?: string }) {
|
|
return <BoltIcon className={className} />;
|
|
}
|