@rock10/ui 1.0.9 → 1.0.11

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -17,6 +17,8 @@ export interface DownloadButtonProps {
17
17
  size?: 'sm' | 'md' | 'lg';
18
18
  /** Se true, mostra apenas o ícone */
19
19
  iconOnly?: boolean;
20
+ /** Se true, utiliza ícones do Lucide (Download, Loader2, Check, X) ao invés de emoji */
21
+ useLucide?: boolean;
20
22
  }
21
- export declare const DownloadButton: ({ videoUrl, fileName, downloadCount, onDownloadIncrement, onDownloadComplete, onDownloadChange, onError, size, iconOnly, }: DownloadButtonProps) => JSX.Element;
23
+ export declare const DownloadButton: ({ videoUrl, fileName, downloadCount, onDownloadIncrement, onDownloadComplete, onDownloadChange, onError, size, iconOnly, useLucide, }: DownloadButtonProps) => JSX.Element;
22
24
  export default DownloadButton;
@@ -11,6 +11,8 @@ export interface LikeButtonProps {
11
11
  iconOnly?: boolean;
12
12
  /** Se true, desabilita o botão */
13
13
  disabled?: boolean;
14
+ /** Se true, utiliza ícones do Lucide (Heart) ao invés de emoji */
15
+ useLucide?: boolean;
14
16
  }
15
- export declare const LikeButton: ({ initialLikes, onLike, onLikeChange, size, iconOnly, disabled, }: LikeButtonProps) => JSX.Element;
17
+ export declare const LikeButton: ({ initialLikes, onLike, onLikeChange, size, iconOnly, disabled, useLucide, }: LikeButtonProps) => JSX.Element;
16
18
  export default LikeButton;