aboutsummaryrefslogblamecommitdiffstats
path: root/packages/instant/src/components/standard_panel_content.tsx
blob: 95a79bd55c69ff02562e14fbdb949e157ae36b39 (plain) (tree)






























                                                                                           
                                                            












                                                                                     








                                                         





                                       
import * as React from 'react';

import { ColorOption } from '../style/theme';

import { Container } from './ui/container';
import { Flex } from './ui/flex';
import { Text } from './ui/text';

export interface MoreInfoSettings {
    text: string;
    href: string;
}

export interface StandardPanelContentProps {
    image: React.ReactNode;
    title: string;
    description: string;
    moreInfoSettings?: MoreInfoSettings;
    action: React.ReactNode;
}

const spacingBetweenPx = '20px';

export const StandardPanelContent: React.StatelessComponent<StandardPanelContentProps> = ({
    image,
    title,
    description,
    moreInfoSettings,
    action,
}) => (
    <Container height="100%">
        <Flex direction="column" height="calc(100% - 58px)">
            <Container marginBottom={spacingBetweenPx}>{image}</Container>
            <Container marginBottom={spacingBetweenPx}>
                <Text fontSize="20px" fontWeight={700} fontColor={ColorOption.black}>
                    {title}
                </Text>
            </Container>
            <Container marginBottom={spacingBetweenPx}>
                <Text fontSize="14px" fontColor={ColorOption.grey} center={true}>
                    {description}
                </Text>
            </Container>
            <Container marginBottom={spacingBetweenPx}>
                {moreInfoSettings && (
                    <Text
                        center={true}
                        fontSize="13px"
                        textDecorationLine="underline"
                        fontColor={ColorOption.lightGrey}
                        href={moreInfoSettings.href}
                    >
                        {moreInfoSettings.text}
                    </Text>
                )}
            </Container>
        </Flex>
        <Container>{action}</Container>
    </Container>
);