@teamsparta/chat-ui
Version:
simple chat-ui
18 lines (15 loc) • 348 B
JSX
import React from "react";
import styled from "@emotion/styled";
const Banner = styled.img`
width: 100%;
height: Auto;
max-width: 328px;
border-radius : 8px;
border : 1px solid #00000005;
`;
const CustomBannerSample = ()=> {
return (
<Banner src={"./rtan_banner.png"}/>
);
}
export default CustomBannerSample;