feat: move all @next files to non @next directory

This commit is contained in:
fragosti
2018-12-20 16:01:53 -08:00
parent 9b540fd8e5
commit abdf91c691
119 changed files with 213 additions and 677 deletions

View File

@@ -0,0 +1,41 @@
import * as React from 'react';
import styled from 'styled-components';
import { ThemeInterface } from 'ts/@next/components/siteWrap';
import LogoIcon from 'ts/@next/icons/logo-with-type.svg';
interface LogoInterface {
theme?: ThemeInterface;
}
// Note let's refactor this
// is it absolutely necessary to have a stateless component
// to pass props down into the styled icon?
const StyledLogo = styled.div`
text-align: left;
position: relative;
z-index: 25;
@media (max-width: 800px) {
svg {
width: 60px;
}
}
`;
const Icon =
styled(LogoIcon) <
LogoInterface >
`
flex-shrink: 0;
path {
fill: ${props => props.theme.textColor};
}
`;
export const Logo: React.StatelessComponent<LogoInterface> = (props: LogoInterface) => (
<StyledLogo>
<Icon {...props} />
</StyledLogo>
);