UNPKG

@yandex/ui

Version:

Yandex UI components

22 lines (21 loc) 599 B
import { FC } from 'react'; import './UserPic-Camera.css'; export interface IUserPicCameraProps { /** * Название сервиса на котором находится UserPic. * * @default 'userpic' */ origin?: string; /** * Ссылка, открывающаяся при клике на камеру. * * @default 'https://passport.yandex.ru/profile/publics' */ cameraURL?: string; /** * Дополнительный класс. */ className?: string; } export declare const UserPicCamera: FC<IUserPicCameraProps>;