import { cx, styled } from '@fuel-ui/css'; import { createComponent } from '../../utils'; export type FuelLogoProps = { size?: number; }; const Svg = styled('svg'); export const FuelLogo = createComponent( ({ size = 60, className, ...props }) => { return ( ); }, );