You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
358 B
16 lines
358 B
import styled from 'styled-components'
|
|
import { space, SpaceProps } from 'styled-system'
|
|
|
|
/**
|
|
* @component
|
|
* @private
|
|
*/
|
|
export const DrawerFooter = styled.section<SpaceProps>`
|
|
padding: ${({ theme }): string => theme.space.xxl} ${({ theme }): string => theme.space.lg};
|
|
text-align: center;
|
|
flex-shrink: 0;
|
|
${space};
|
|
`
|
|
|
|
export default DrawerFooter
|