import { forwardRef, useId } from 'react'; import { CommonLogoProps } from '../types'; type BigSkyLogoProps = CommonLogoProps & Omit< React.SVGProps< SVGSVGElement >, 'width' >; const CentralLogo = ( { fill }: Pick< BigSkyLogoProps, 'fill' > ) => { return ( <> ); }; export const Mark = forwardRef< SVGSVGElement, BigSkyLogoProps >( function Mark( { height = 24, monochrome = false, title = 'Big Sky', ...props }, ref ) { const titleId = useId(); const maskId = useId(); const brandFill = monochrome ? 'currentColor' : '#030FB0'; const isMasked = monochrome; return ( { title && { title } } { isMasked ? ( { /* Full white rectangle to start with full visibility */ } { /* The shape we want to "cut out" is black in the mask */ } ) : ( ) } ); } ); export const BigSkyLogo = { Mark: Object.assign( Mark, { displayName: 'BigSkyLogo.Mark', } ), };