mirror of
https://github.com/danny-avila/LibreChat.git
synced 2026-03-06 00:00:18 +01:00
fix build client package
This commit is contained in:
parent
9f270127d3
commit
0b7dd55797
22 changed files with 148 additions and 565 deletions
|
|
@ -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"
|
||||
|
|
|
|||
|
|
@ -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"
|
||||
|
|
|
|||
|
|
@ -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"
|
||||
|
|
|
|||
|
|
@ -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"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue