import React from 'react'; import classNames from 'classnames'; import { Box, as } from 'folds'; import * as css from './UrlPreview.css'; export const UrlPreview = as<'div'>(({ className, ...props }, ref) => ( )); export const UrlPreviewImg = as<'img'>(({ className, alt, ...props }, ref) => ( {alt} )); export const UrlPreviewContent = as<'div'>(({ className, ...props }, ref) => ( )); export const UrlPreviewDescription = as<'span'>(({ className, ...props }, ref) => ( ));