import Tweet from "react-tweet-embed"; export type TweetEmbedProps = { id: string; options?: object; className?: string; }; const TweetEmbed = ({ id, className, options }: TweetEmbedProps) => ( ); export default TweetEmbed;