import { LinkExternal } from "@styled-icons/boxicons-regular"; import { API } from "revolt.js"; import styles from "./Embed.module.scss"; import { IconButton } from "@revoltchat/ui"; interface Props { embed: API.Image; } export default function EmbedMediaActions({ embed }: Props) { const filename = embed.url.split("/").pop(); return (
); }