Documentation
Collapsible

Collapsible

orhun starred 3 repositories
ClickHouse/NoiSQL

Example

import { Collapsible } from '@i4o/catalystui'
 
export default () => {
	return (
		<DemoCard>
			<Collapsible
				first={<span>First Item</span>}
				title='Are you sure?'
				trigger={<IconButton icon={<RowSpacingIcon />} />}
			/>
		</DemoCard>
	)
}

Props

NameTypeDefaultDescription
firstReactNodeFirst element of the collapsible. It will always be visible.
itemsReactNode[]List of elements in the collapsible.
titlestring | ReactNodeThe title of the collapsible.
triggerstring | ReactNodeThe trigger button.