Use our image component in mission
This commit is contained in:
@@ -5,9 +5,11 @@ export interface ImageProps {
|
||||
className?: string;
|
||||
src?: string;
|
||||
fallbackSrc?: string;
|
||||
height?: string | number;
|
||||
borderRadius?: string;
|
||||
width?: string | number;
|
||||
height?: string | number;
|
||||
maxWidth?: string | number;
|
||||
maxHeight?: string | number;
|
||||
}
|
||||
interface ImageState {
|
||||
imageLoadFailed: boolean;
|
||||
@@ -29,6 +31,8 @@ export class Image extends React.Component<ImageProps, ImageState> {
|
||||
src={src}
|
||||
style={{
|
||||
borderRadius: this.props.borderRadius,
|
||||
maxWidth: this.props.maxWidth,
|
||||
maxHeight: this.props.maxHeight,
|
||||
}}
|
||||
height={this.props.height}
|
||||
width={this.props.width}
|
||||
|
@@ -1,6 +1,7 @@
|
||||
import * as React from 'react';
|
||||
|
||||
import { Container } from 'ts/components/ui/container';
|
||||
import { Image } from 'ts/components/ui/image';
|
||||
import { Text } from 'ts/components/ui/text';
|
||||
import { colors } from 'ts/style/colors';
|
||||
import { ScreenWidths } from 'ts/types';
|
||||
@@ -10,7 +11,7 @@ export interface MissionProps {
|
||||
}
|
||||
export const Mission = (props: MissionProps) => {
|
||||
const isSmallScreen = props.screenWidth === ScreenWidths.Sm;
|
||||
const image = <img src="/images/jobs/world-map.svg" style={{ maxWidth: 500, maxHeight: 280 }} />;
|
||||
const image = <Image src="/images/jobs/world-map.svg" maxWidth="500px" maxHeight="280px" />;
|
||||
const missionStatementClassName = isSmallScreen ? 'center' : undefined;
|
||||
const missionStatement = (
|
||||
<Container className={missionStatementClassName} maxWidth="388px">
|
||||
|
Reference in New Issue
Block a user