'use client'; import { ThreeCircles, ThreeDots } from 'react-loader-spinner'; import { useConceptOptions } from '@/context/ConceptOptionsContext'; import AnimateFade from '../wrap/AnimateFade'; interface LoaderProps { size?: number; circular?: boolean; } function Loader({ size = 10, circular }: LoaderProps) { const { colors } = useConceptOptions(); return ( {circular ? ( ) : ( )} ); } export default Loader;