Skip to content

Instantly share code, notes, and snippets.

View apple-juice's full-sized avatar
💜

Julia apple-juice

💜
View GitHub Profile
import styled from "styled-components"
const Image = styled.div`
width: 64px;
height: 64px;
margin: 0 auto 20px;
border-radius: 50px;
background: #fafbfc no-repeat center / contain;
`
export default function Card() {
return (
<Wrapper>
<Inner>
<Image
style={{ backgroundImage: "url(https://picsum.photos/30/30)" }}
/>
<Content>
<Title>Заголовок</Title>
<Subtitle>Подзаголовок</Subtitle>