We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8955915 commit ea77790Copy full SHA for ea77790
apps/docs/components/icons.tsx
@@ -4636,3 +4636,24 @@ export function BedrockIcon(props: SVGProps<SVGSVGElement>) {
4636
</svg>
4637
)
4638
}
4639
+
4640
+export function TableIcon(props: SVGProps<SVGSVGElement>) {
4641
+ return (
4642
+ <svg
4643
+ xmlns='http://www.w3.org/2000/svg'
4644
+ viewBox='0 0 24 24'
4645
+ fill='none'
4646
+ stroke='currentColor'
4647
+ strokeWidth={2}
4648
+ strokeLinecap='round'
4649
+ strokeLinejoin='round'
4650
+ {...props}
4651
+ >
4652
+ <rect width='18' height='18' x='3' y='3' rx='2' />
4653
+ <path d='M3 9h18' />
4654
+ <path d='M3 15h18' />
4655
+ <path d='M9 3v18' />
4656
+ <path d='M15 3v18' />
4657
+ </svg>
4658
+ )
4659
+}
0 commit comments