import type { CSSProperties } from 'react';
export const BRAND_NAME = 'Nudentic';
/** Light-theme primary — use in print/PDF where theme tokens are unsafe. */
export const BRAND_PRIMARY_HEX = '#009cae';
type BrandWordmarkProps = {
className?: string;
style?: CSSProperties;
/**
* i-dot color. Omit to use the theme primary token.
* Pass a hex (e.g. `BRAND_PRIMARY_HEX`) for print/PDF capture.
*/
dotColor?: string;
};
function BrandI({ fill }: { fill: string }) {
return (
);
}
export function BrandWordmark({ className, style, dotColor }: BrandWordmarkProps) {
const tittleFill = dotColor ?? 'var(--color-primary)';
return (
{BRAND_NAME}
Nudent
c
);
}