import React from "react"; import { THEME } from "../../types"; import { colors } from "../../tokens"; const WIDTH = 803; const HEIGHT = 172; const RATIO: number = WIDTH / HEIGHT; const widthFromHeight = (height: number) => Math.ceil(height * RATIO); type AptibleLogoProps = { height: number; theme?: THEME; }; export const AptibleLogo = (props: AptibleLogoProps) => { const { height = HEIGHT, theme = THEME.BRAND } = props; const textColor = { brand: colors.white, product: colors.gray["900"], }; return ( Aptible ); };