Files
mycode/jsonhero-web/app/components/Home/HomeApiHeroLaptop.tsx
2026-02-04 12:18:35 +08:00

10 lines
241 B
TypeScript

import ApiHeroLaptop from "~/assets/images/apihero-laptop.png";
export type IconProps = {
className?: string;
};
export function HomeApiHeroLaptop({ className }: IconProps) {
return <img src={ApiHeroLaptop} className={className} />;
}