fix build client package

This commit is contained in:
Marco Beretta 2025-07-10 23:45:52 +02:00
parent 9f270127d3
commit 0b7dd55797
No known key found for this signature in database
GPG key ID: D918033D8E74CC11
22 changed files with 148 additions and 565 deletions

View file

@ -1,6 +1,10 @@
import { cn } from '~/utils/';
export default function ListeningIcon({ className }) {
type ListeningIconProps = {
className?: string;
};
export default function ListeningIcon({ className }: ListeningIconProps) {
return (
<svg
xmlns="http://www.w3.org/2000/svg"

View file

@ -1,6 +1,9 @@
import React from 'react';
type SaveIconProps = {
size?: string | number;
className?: string;
};
export default function SaveIcon({ size = '1em', className }) {
export default function SaveIcon({ size = '1em', className }: SaveIconProps) {
return (
<svg
viewBox="64 64 896 896"

View file

@ -1,6 +1,10 @@
import { cn } from '~/utils/';
export default function SpeechIcon({ className }) {
type SpeechIconProps = {
className?: string;
};
export default function SpeechIcon({ className }: SpeechIconProps) {
return (
<svg
xmlns="http://www.w3.org/2000/svg"

View file

@ -1,6 +1,9 @@
import React from 'react';
type SwitchIconProps = {
size?: string | number;
className?: string;
};
export default function SwitchIcon({ size = '1em', className }) {
export default function SwitchIcon({ size = '1em', className }: SwitchIconProps) {
return (
<svg
viewBox="64 64 896 896"