import { palette } from '@roleypoly/design-system/atoms/colors'; import * as React from 'react'; export type LogoProps = { fill: string; width: number; height: number; circleFill: string; circleOuterFill: string; typeFill: string; style: object; className: string; 'data-for'?: string; 'data-tip'?: string; }; export const Logotype = ({ typeFill = palette.taupe400, circleFill = palette.red200, circleOuterFill = palette.green200, ...props }: Partial) => ( ); export const Logomark = ({ circleFill = palette.red200, circleOuterFill = palette.green200, ...props }: Partial) => ( );