mirror of
				https://github.com/theoludwig/theoludwig.git
				synced 2025-11-04 00:19:01 +01:00 
			
		
		
		
	feat: add Open source section
This commit is contained in:
		@@ -1,11 +1,16 @@
 | 
			
		||||
import classNames from 'classnames'
 | 
			
		||||
 | 
			
		||||
export const Icon: React.FC<React.SVGProps<SVGSVGElement>> = (props) => {
 | 
			
		||||
  const { children, ...rest } = props
 | 
			
		||||
  const { children, className, ...rest } = props
 | 
			
		||||
 | 
			
		||||
  return (
 | 
			
		||||
    <svg
 | 
			
		||||
      xmlns='http://www.w3.org/2000/svg'
 | 
			
		||||
      viewBox='0 0 24 24'
 | 
			
		||||
      className='dark:text-white text-black w-8 h-8 fill-current'
 | 
			
		||||
      className={classNames(
 | 
			
		||||
        'dark:text-white text-black w-8 h-8 fill-current',
 | 
			
		||||
        className
 | 
			
		||||
      )}
 | 
			
		||||
      {...rest}
 | 
			
		||||
    >
 | 
			
		||||
      {children}
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user