We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5d251ff commit 281e2f4Copy full SHA for 281e2f4
1 file changed
src/components/Icons.tsx
@@ -1,8 +1,11 @@
1
import { LucideProps } from 'lucide-react'
2
3
export const Icons = {
4
- underline: (props: LucideProps) => (
5
- <svg {...props} viewBox='0 0 687 155'>
+ underline: ({
+ className,
6
+ ...props
7
+ }: LucideProps & { className?: string }) => (
8
+ <svg {...props} className={className} viewBox='0 0 687 155'>
9
<g
10
stroke='currentColor'
11
strokeWidth='7'
0 commit comments