mirror of
https://github.com/StanGirard/quivr.git
synced 2024-12-20 01:21:50 +03:00
13 lines
305 B
TypeScript
13 lines
305 B
TypeScript
import { AiFillLinkedin } from "react-icons/ai";
|
|
import { RiTwitterXFill } from "react-icons/ri";
|
|
|
|
import { Testimonial } from "@/lib/types/testimonial";
|
|
|
|
export const socialMediaToIcon: Record<
|
|
Testimonial["socialMedia"],
|
|
JSX.Element
|
|
> = {
|
|
linkedin: <AiFillLinkedin />,
|
|
x: <RiTwitterXFill />,
|
|
};
|