fix: dropdown menu

This commit is contained in:
shadcn 2023-06-16 20:38:13 +04:00
parent 615e8e6384
commit 7ce8ae0867
8 changed files with 230 additions and 119 deletions

View file

@ -442,6 +442,23 @@ function IconUsers({ className, ...props }: React.ComponentProps<'svg'>) {
)
}
function IconExternalLink({
className,
...props
}: React.ComponentProps<'svg'>) {
return (
<svg
xmlns="http://www.w3.org/2000/svg"
fill="currentColor"
className={cn('h-4 w-4', className)}
viewBox="0 0 256 256"
{...props}
>
<path d="M224 104a8 8 0 0 1-16 0V59.32l-66.33 66.34a8 8 0 0 1-11.32-11.32L196.68 48H152a8 8 0 0 1 0-16h64a8 8 0 0 1 8 8Zm-40 24a8 8 0 0 0-8 8v72H48V80h72a8 8 0 0 0 0-16H48a16 16 0 0 0-16 16v128a16 16 0 0 0 16 16h128a16 16 0 0 0 16-16v-72a8 8 0 0 0-8-8Z" />
</svg>
)
}
export {
IconEdit,
IconNextChat,
@ -467,5 +484,6 @@ export {
IconDownload,
IconClose,
IconShare,
IconUsers
IconUsers,
IconExternalLink
}