-import { cn } from '@/utils/ui';
-import { computed } from 'vue';
-
-interface BorderBeamProps {
- class?: string;
- size?: number;
- duration?: number;
- borderWidth?: number;
- anchor?: number;
- colorFrom?: string;
- colorTo?: string;
- delay?: number;
-}
-
-const props = withDefaults(defineProps(), {
- class: '',
- size: 200,
- duration: 15000,
- anchor: 10,
- borderWidth: 1.5,
- colorFrom: '#ffaa40',
- colorTo: '#9c40ff',
- delay: 0,
-});
-
-const durationInSeconds = computed(() => `${props.duration}s`);
-const delayInSeconds = computed(() => `${props.delay}s`);
-
-