Files
lab/src/components/logo.tsx
T
kovakmedya cb150f7a24 init: lab project bootstrapped from isletmem-kovakcrm
- CRM domain modules removed (customers, services, software, calendar, tasks, invoices, leads, finance, etc.)
- DLS branding: package name=lab, logo wordmark, sidebar nav, header CTA
- Tenant layer extended with kind dimension (lab|clinic) + requireTenantKind helper
- Schema rewritten for DLS domain: jobs, job_files, job_status_history, prosthetics, connections, finance_entries, notifications
- Onboarding form: clinic/lab account-type selection + auto-generated memberNumber
- Placeholder routes for jobs/{inbound,outbound,new}, products, finance, connections
- PDF spec + spec.md under belgeler/
- db: lab database + 13 collections + indexes + storage bucket (job-files) provisioned via Appwrite MCP

Ref: belgeler/dls-ui-tasarim.pdf
2026-05-21 18:28:38 +03:00

33 lines
682 B
TypeScript

import * as React from "react";
interface LogoProps extends React.SVGProps<SVGSVGElement> {
size?: number;
}
export function Logo({ size = 24, className, ...props }: LogoProps) {
return (
<svg
width={size}
height={size}
viewBox="0 0 32 32"
fill="none"
xmlns="http://www.w3.org/2000/svg"
className={className}
{...props}
>
<text
x="16"
y="21"
textAnchor="middle"
fontFamily="system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif"
fontWeight="800"
fontSize="13"
letterSpacing="-0.5"
fill="currentColor"
>
DLS
</text>
</svg>
);
}