Daniele Luisetto
Daniele Luisetto
You can change the `Accordion` icon by changing the icon component in the `accordion.tsx` file: ```diff const AccordionTrigger = React.forwardRef< React.ElementRef, React.ComponentPropsWithoutRef >(({ className, children, ...props }, ref) => (...
You can either use the `` tag or copy & paste the svg code directly in the accordion file and apply the same classes to the element. I'm used to...
Seems good to me.
TODO: Implement success styles in themes
I don't understand what seems to be the issue here, could you explain yourself a little better and maybe provide an example?
Hi @Huydnph076901606 you can do like this: ```tsx 'use client'; import * as React from 'react'; import * as AccordionPrimitive from '@radix-ui/react-accordion'; import { ChevronDown, Plus, Minus } from 'lucide-react';...
Hi @tanish-malekar, this interface is intended to be customized, that's why `interface` is used instead of `type`. This convetion is used many times in this project. Regarding the error in...
Hi @Arsh1a, as @chungweileong94 suggested, the submitted date value is in UTC format. You can see it by yourself by creating a new Date object in JavaScript: ```js const date...
Duplica of #2536
Hi @milindgoel15, you can use useState to decide when the dialog should be opened. (I hope this is what you want achieve, otherwise let me know) Check this example: ```tsx...