Files
asan-installer-front/src/components/ui/dashboard/footer.tsx
T
Alihaghighattalab ee1fa04d3b complete footer
2024-08-06 14:46:40 +03:30

10 lines
429 B
TypeScript

import { SocialsInterface } from "../../../types"
import { socialsList } from "../../../utility/socials"
export const Footer = () => {
return (
<footer className="w-full flex flex-row gap-x-2 justify-end items-center">
{socialsList?.map((item: SocialsInterface) => <img key={item?.name} src={item?.path} alt={item?.name} className="size-10 min-w-10 min-h-10 cursor-pointer" />)}
</footer>
)
}