import styled from 'styled-components'; import { UIStyledComponentProps } from '../../components/types'; import { getCssResponsive } from '../../components/utils'; type Props = { }; export type CardContentProps = UIStyledComponentProps; export const CardContent = styled.div` position: relative; ${props => getCssResponsive(props)} `;