import type {IconSvgProps} from "@/types"; import React from "react"; import {cn} from "@heroui/theme"; import {dataAttr} from "@/utils"; export interface LogoProps extends IconSvgProps { auto?: boolean; small?: boolean; outlined?: boolean; fill?: string; className?: string; } export const SmallLogoOutlined: React.FC = ({ auto, size, width, height, className, ...props }) => ( ); export const SmallLogo: React.FC = ({ auto, size, width, height, className, ...props }) => ( ); export const LargeLogo: React.FC = ({auto, className, ...props}) => ( ); export const HeroUILogo: React.FC = ({auto, small, outlined, ...props}) => { if (outlined) { return ; } if (auto) { return (
); } if (small) { return ; } return ; };