mirror of
https://github.com/danny-avila/LibreChat.git
synced 2026-03-03 23:00:18 +01:00
🎨 style: update Assistants builder (#3397)
* style: update Assistant builder * fix(Eng): re-introduce old file_search info message * feat: new OGDialogTemplate; style: imporved tools + actions dialogs * style: fix alignment issue for delete tool dialog * chore: import order --------- Co-authored-by: Danny Avila <danny@librechat.ai>
This commit is contained in:
parent
344297021f
commit
0bd59c0efe
29 changed files with 1115 additions and 916 deletions
|
|
@ -1,6 +1,10 @@
|
|||
import { cn } from '~/utils';
|
||||
|
||||
export default function TrashIcon({ className = '' }) {
|
||||
type TrashIconProps = {
|
||||
className?: string;
|
||||
};
|
||||
|
||||
export default function TrashIcon({ className = '' }: TrashIconProps) {
|
||||
return (
|
||||
<svg
|
||||
fill="none"
|
||||
|
|
@ -8,7 +12,7 @@ export default function TrashIcon({ className = '' }) {
|
|||
viewBox="0 0 24 24"
|
||||
strokeLinecap="round"
|
||||
strokeLinejoin="round"
|
||||
className={cn('icon-md', className)}
|
||||
className={cn('icon-md h-4 w-4', className)}
|
||||
height="1em"
|
||||
width="1em"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue