import styles from './Embed.module.scss'; import IconButton from '../../../ui/IconButton'; import { LinkExternal } from '@styled-icons/boxicons-regular'; import { EmbedImage } from "revolt.js/dist/api/objects"; interface Props { embed: EmbedImage; } export default function EmbedMediaActions({ embed }: Props) { const filename = embed.url.split('/').pop(); return (
{filename} {embed.width + 'x' + embed.height}
) }