import * as React from 'react'; import styled from 'styled-components'; import {Link} from 'ts/@next/components/button'; import {Icon} from 'ts/@next/components/icon'; interface Props { icon: string; title: string; linkLabel: string; linkUrl: string; } export const BlockIconLink = (props: Props) => (
); const Wrap = styled.div` padding: 40px; display: flex; align-items: center; text-align: center; background-color: ${props => props.theme.lightBgColor}; `;