mirror of
https://github.com/datahub-project/datahub.git
synced 2025-09-08 16:48:17 +00:00
14 lines
280 B
JavaScript
14 lines
280 B
JavaScript
![]() |
import React from "react";
|
||
|
import clsx from "clsx";
|
||
|
import Image from "@theme/IdealImage";
|
||
|
|
||
|
const RoundedImage = (props) => (
|
||
|
<Image
|
||
|
className={clsx("shadow--tl")}
|
||
|
style={{ borderRadius: "1rem", overflow: "hidden" }}
|
||
|
{...props}
|
||
|
/>
|
||
|
);
|
||
|
|
||
|
export default RoundedImage;
|