Newer
Older
import React from 'react'
import styled from 'styled-components'
const Close = styled.p`
display: flex;
align-items: center;
margin: 0;
& + h2 {
margin-top: 0;
}
const CloseButton = ({ size = 4, ...props }) => (
const CloseModal = ({ className, ...props }) => (
<Close className={className}>
<CloseButton {...props} />
</Close>
)
export { CloseModal, CloseButton }