import React from 'react'; import { Input } from 'components/shared/Input'; import { SearchIcon, CrossIcon } from 'components/shared/CustomIcon'; export const renderInputs = () => { return ( <>
} rightIcon={} placeholder="Placeholder text" />
} rightIcon={} description="Additional information or context" placeholder="Placeholder text" size="sm" />
); };