10 lines
429 B
TypeScript
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>
|
|
)
|
|
} |