mirror of
https://github.com/revoltchat/revite.git
synced 2024-11-14 19:25:02 -05:00
26 lines
838 B
TypeScript
26 lines
838 B
TypeScript
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 (
|
|
<div className={styles.actions}>
|
|
<div className={styles.info}>
|
|
<span className={styles.filename}>{filename}</span>
|
|
<span className={styles.filesize}>{embed.width + 'x' + embed.height}</span>
|
|
</div>
|
|
<a href={embed.url} target="_blank">
|
|
<IconButton>
|
|
<LinkExternal size={24} />
|
|
</IconButton>
|
|
</a>
|
|
</div>
|
|
)
|
|
}
|