mirror of
https://github.com/vitodeploy/vito.git
synced 2025-07-05 16:02:34 +00:00
Export and Import vito settings (#606)
* Export and Import vito settings * fix tests
This commit is contained in:
10
resources/js/icons/vito.tsx
Normal file
10
resources/js/icons/vito.tsx
Normal file
@ -0,0 +1,10 @@
|
||||
import React from 'react';
|
||||
import { LucideProps } from 'lucide-react';
|
||||
import AppLogoIcon from '@/components/app-logo-icon';
|
||||
import { cn } from '@/lib/utils';
|
||||
|
||||
export const VitoIcon = React.forwardRef<SVGSVGElement, LucideProps>(({ color = 'currentColor', strokeWidth = 30, className, ...rest }, ref) => {
|
||||
return <AppLogoIcon ref={ref} color={color} className={cn(className, 'rounded-xs')} strokeWidth={strokeWidth} {...rest} />;
|
||||
});
|
||||
|
||||
export default VitoIcon;
|
Reference in New Issue
Block a user