aboutsummaryrefslogblamecommitdiffstats
path: root/packages/website/ts/components/ui/island.tsx
blob: f157e30522933ea155b3c3b63beb362b27371d34 (plain) (tree)
1
2
3
4
5
6
7
8
9
                               
                                         
                                        


                                

                                                                                   
                          

 


                                                                                                      
 

                                          
                                                  


                                                      


                       
                         



                              
import * as React from 'react';
import { colors } from 'ts/style/colors';
import { styled } from 'ts/style/theme';

export interface IslandProps {
    style?: React.CSSProperties;
    className?: string;
    Component?: string | React.ComponentClass<any> | React.StatelessComponent<any>;
    borderRadius?: string;
}

const PlainIsland: React.StatelessComponent<IslandProps> = ({ Component, borderRadius, ...rest }) => (
    <Component {...rest} />
);

export const Island = styled(PlainIsland)`
    background-color: ${colors.white};
    border-radius: ${props => props.borderRadius};
    box-shadow: 0px 4px 6px ${colors.walletBoxShadow};
    overflow: hidden;
`;

Island.defaultProps = {
    Component: 'div',
    borderRadius: '10px',
    style: {},
};

Island.displayName = 'Island';