| 123456789101112131415161718192021222324 |
- import * as React from 'react';
- interface IconProps {
- children: React.ReactNode;
- className?: string;
- // FIX: Add style prop to allow inline styling of the SVG icon.
- style?: React.CSSProperties;
- }
- export const Icon: React.FC<IconProps> = ({ children, className, style }) => {
- return (
- <svg
- xmlns="http://www.w3.org/2000/svg"
- className={className || 'h-6 w-6'}
- fill="none"
- viewBox="0 0 24 24"
- stroke="currentColor"
- strokeWidth={2}
- style={style}
- >
- {children}
- </svg>
- );
- };
|