@ownclouders/design-system
Version:
ownCloud Design System is based on VueDesign Systems and is used to design ownCloud UI components
20 lines (19 loc) • 744 B
TypeScript
/**
* @component OcLogo
* @description A logo component that displays an image with specified source and alternative text.
* @status ready
* @release 7.3.0
*
* @props
* @prop {string} src - The source URL of the logo image.
* @prop {string} alt - The alternative text for the logo image.
*
* @example
* <oc-logo src="src" alt="alt" />
*/
interface Props {
src: string;
alt: string;
}
declare const _default: import('vue').DefineComponent<Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<Props> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLImageElement>;
export default _default;