Documentation
Popover

Popover

Example

import { Button, Popover } from '@i4o/catalystui'
 
export default () => {
	return (
		<Popover
			close={true}
			title='Edit Profile'
			trigger={<Button>Click Me</Button>}
			placement='bottom'
		>
			<>
				<div className='grid grid-cols-5 gap-4 mt-4'>
					<label className='flex items-center text-sm font-semibold col-span-1'>
						Name
					</label>
					<input
						type='text'
						className='h-8 bg-transparent rounded-lg border border-gray-200 dark:border-gray-700 col-span-4'
					/>
					<label className='flex items-center text-sm font-semibold col-span-1'>
						Email
					</label>
					<input
						type='text'
						className='h-8 bg-transparent rounded-lg border border-gray-200 dark:border-gray-700 col-span-4'
					/>
				</div>
			</>
		</Popover>
	)
}

Props

NameTypeDefaultDescription
alignstart | center | endcenterAlignment of the popover in relation to the button
closebooleantrueWhether to show the close button on the popover
childrenReactNodeThe content of the popover
titlestringThe title of the popover
triggerReactNodeThe element that triggers the popover
side'top' | 'right' | 'bottom' | 'left''bottom'The placement of the popover.
sideOffsetnumber0The offset of the popover from the trigger.