UNPKG

react-select-custom-component

Version:

A highly customizable React dropdown component based on React Select, providing flexible and lightweight select input options.

16 lines (13 loc) 459 B
import React, { memo } from 'react'; function Header(props) { const { title, mandatory, size = "", color = "" } = props; return ( <span className='font-inter_medium text-[13px] lg:text-[14px] text-header_color' style={{ fontSize: size, color: color }}> {title} {mandatory && ( <span className='text-red-500'> *</span> )} </span> ) } export default memo(Header);