mirror of
https://github.com/stronk-dev/RandomChad.git
synced 2025-07-05 10:35:08 +02:00
11 lines
299 B
JavaScript
11 lines
299 B
JavaScript
import styled from 'styled-components'
|
|
import CircleImage from '../atoms/CircleImage'
|
|
import { Text } from '../atoms/Text'
|
|
|
|
const Wrapper = styled.div`
|
|
`
|
|
|
|
export default ( { title, ...props } ) => <Wrapper>
|
|
<CircleImage { ...props } />
|
|
{ title && <Text align="center">{ title }</Text> }
|
|
</Wrapper> |