aboutsummaryrefslogblamecommitdiffstats
path: root/packages/website/ts/@next/components/icon.tsx
blob: 10916f28ee8a1aa67571c91da26e670801f812b9 (plain) (tree)





















                                                                       
import * as React from 'react';
import styled from 'styled-components';

interface Props {
    icon: any;
    size?: any;
}

const StyledIcon = styled.div`
    margin: auto;
    flex-shrink: 0;

    ${(props: Props) => props.size && `
    width: ${props.size}; height: auto;
    `}
`;

export const Icon: React.StatelessComponent = ({ icon, ...props }) => (
    <>
        <StyledIcon as={icon as 'svg'} {...props} />
    </>
);