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






                                             
                           












                                                                   
                                                            
  
import * as React from 'react';
import { colors } from 'ts/utils/colors';

export interface InputLabelProps {
    text: string | Element | React.ReactNode;
}

const styles = {
    label: {
        color: colors.grey,
        fontSize: 12,
        pointerEvents: 'none',
        textAlign: 'left',
        transform: 'scale(0.75) translate(0px, -28px)',
        transformOrigin: 'left top 0px',
        transition: 'all 450ms cubic-bezier(0.23, 1, 0.32, 1) 0ms',
        userSelect: 'none',
        width: 240,
        zIndex: 1,
    },
};

export const InputLabel = (props: InputLabelProps) => {
    return <label style={styles.label}>{props.text}</label>;
};