19 lines
476 B
TypeScript
19 lines
476 B
TypeScript
import * as React from 'react';
|
|
import styled from 'styled-components';
|
|
import { withFilteredProps } from 'ts/utils/filter_props';
|
|
|
|
interface Props {
|
|
alt?: string;
|
|
src?: any;
|
|
srcset?: any;
|
|
isCentered?: boolean;
|
|
}
|
|
|
|
const ImageClass: React.FunctionComponent<Props> = (props: Props) => {
|
|
return <img {...props} />;
|
|
};
|
|
|
|
export const Image = styled(withFilteredProps(ImageClass, ['alt', 'src']))<Props>`
|
|
margin: ${props => props.isCentered && `0 auto`};
|
|
`;
|