Sha256: 98eaa2edbb2a44b1e1a1099264a8a59453fbd61856b788c182a4062931609ed3
Contents?: true
Size: 746 Bytes
Versions: 831
Compression:
Stored size: 746 Bytes
Contents
import React from 'react' import { components } from 'react-select' import User from '../../pb_user/_user' const Option = (props: any) => { const { imageUrl, } = props.data const { valueComponent } = props.selectProps return ( <components.Option {...props}> <> {!valueComponent && imageUrl && <User align="left" avatarUrl={imageUrl} dark={props.selectProps.dark} name={props.label} orientation="horizontal" /> } {valueComponent && valueComponent(props.data) } {!valueComponent && !imageUrl && props.label } </> </components.Option> ) } export default Option
Version data entries
831 entries across 831 versions & 1 rubygems