/** * @fileoverview Saasflare app icon — minimal SVG logomark rendered as a React component. * @module packages/ui/components/brand/app-icon * @package ui * * @component * @example * import { AppIcon } from '@saasflare/ui'; * */ import * as React from 'react'; /** Props for the {@link AppIcon} component. */ export interface AppIconProps extends React.SVGProps { /** Square size in px (or any CSS length); `width`/`height` override it. */ size?: number | string; } /** * AppIcon – Custom SVG icon for Saasflare. */ export declare const AppIcon: React.ForwardRefExoticComponent & React.RefAttributes>;