import React from 'react'; import { css, cx } from '@neliosoft/inlexa/css'; export type CustomIconProps = { readonly className?: string; readonly path: string; }; const DEFAULT_SIZE = css( { width: '1em', height: '1em' } ); export const CustomIcon = ( { className, path, }: CustomIconProps ): JSX.Element => ( );