@atlaskit/dropdown-menu
Version:
A dropdown menu displays a list of actions or options to a user.
18 lines (17 loc) • 327 B
TypeScript
/**
* @jsxRuntime classic
* @jsx jsx
* @jsxFrag jsx
*/
import React from 'react';
/**
* __Checkbox icon__
*
* Used to visually represent the selected state in DropdownItemCheckbox
*
* @internal
*/
declare const CheckboxIcon: ({ checked }: {
checked: boolean;
}) => React.JSX.Element;
export default CheckboxIcon;