design-system-simplefi
Version:
Design System for SimpleFi Applications
21 lines (20 loc) • 829 B
TypeScript
import { DefaultTheme } from 'styled-components';
import { SpacingSizeValue } from '../types/spacing.types';
export declare type Theme = {
theme?: DefaultTheme;
margin?: SpacingSizeValue;
padding?: SpacingSizeValue;
};
export declare const pxToRem: any;
export declare const getColor: any;
export declare const getFontFamily: any;
export declare const getFontWeight: any;
export declare const getFontSize: any;
export declare const getLineHeight: any;
export declare const getBorderRadius: any;
export declare const getButtonColor: any;
export declare const getLinkStyle: any;
export declare const getDepth: any;
export declare const getSpace: any;
export declare const abbreviateNumber: (value: number) => string;
export declare const shortenAddress: (address: string, chars?: number) => string;