File tree Expand file tree Collapse file tree 4 files changed +13
-4
lines changed Expand file tree Collapse file tree 4 files changed +13
-4
lines changed Original file line number Diff line number Diff line change 1+ import { SVGProps } from "react" ;
2+ import { Scale } from "lucide-react" ;
3+
4+ export default function LegalIcon ( {
5+ className,
6+ ...props
7+ } : SVGProps < SVGSVGElement > ) {
8+ return < Scale className = { className } { ...props } /> ;
9+ }
Original file line number Diff line number Diff line change 1414 " cookie-policy" ,
1515 " trademark-guidelines"
1616 ],
17- "icon" : " terminal "
17+ "icon" : " legal "
1818}
Original file line number Diff line number Diff line change 2222 " cloud-enterprise-edition" ,
2323 " engineering" ,
2424 " developer-resources" ,
25- " FAQs" ,
26- " legal-v2"
25+ " FAQs"
2726 ]
2827}
Original file line number Diff line number Diff line change @@ -28,7 +28,7 @@ import Linkedin from '@/components/icons/Linkedin';
2828import Extension from '@/components/icons/Extension' ;
2929import Sparkle from '@/components/icons/Sparkle' ;
3030import Chart from '@/components/icons/Chart' ;
31-
31+ import Legal from '@/components/icons/Legal' ;
3232
3333const iconMap = {
3434 alertCircle : AlertCircle ,
@@ -61,6 +61,7 @@ const iconMap = {
6161 extension : Extension ,
6262 sparkle : Sparkle ,
6363 chart : Chart ,
64+ legal : Legal ,
6465} as const ;
6566
6667type IconNameType = keyof typeof iconMap ;
You can’t perform that action at this time.
0 commit comments