Skip to content
View danpoj's full-sized avatar

Block or report danpoj

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. Image uploader<using shadcn form> Image uploader<using shadcn form>
    1
    'use client';
    2
    
                  
    3
    import { LoadingDots } from '@/components/loading-dots';
    4
    import { Form, FormField } from '@/components/ui/form';
    5
    import { ImageUploader } from '@/components/uploader';
  2. expanding arrow expanding arrow
    1
    export default function ExpandingArrow({ className }: { className?: string }) {
    2
      return (
    3
        <div className='group relative flex items-center'>
    4
          <svg
    5
            className={`${
  3. loading dots loading dots
    1
    import { cn } from '@/lib/utils';
    2
    
                  
    3
    export const LoadingDots = ({
    4
      color = '#808080',
    5
      className,