UNPKG

design-system-simplefi

Version:

Design System for SimpleFi Applications

11 lines (10 loc) 297 B
import React from 'react'; import { Color } from '../../theme/colors/colors.types'; export interface LogoProps { backgroundClr?: string; width?: number | string; height?: number | string; logoColor?: Color; } declare const Logo: React.FC<LogoProps>; export default Logo;