/** * @docunator * @title ZenDrawerItem * @description A single item for the ZenDrawer component * @category Drawer Components Props */ type ZenDrawerItemProps = { label: string; leftIcon?: string; rightIcon?: string; onPress?: () => void; arrow?: boolean; closeOnPress?: boolean; }; /** * @docunator * @title ZenDrawerItem * @description A single item for the ZenDrawer component * @category Drawer Components * @param {string} label - The label of the drawer item * @param {string} leftIcon - The name of the left icon (from ZenIcon) * @param {string} rightIcon - The name of the right icon (from ZenIcon) * @param {function} onPress - The function to call when the item is pressed * @param {boolean} arrow - Whether to show a right arrow icon * @param {function} closeOnPress - Whether to close the drawer when the item is pressed * @author Danilo Ramírez Mattey * @version 1.0.0 * @see ZenDrawer * @see ZenDrawerTitle */ export default function ZenDrawerItem({ label, leftIcon, rightIcon, onPress, arrow, closeOnPress, }: ZenDrawerItemProps): import("react/jsx-runtime").JSX.Element; export {}; //# sourceMappingURL=ZenDrawerItem.d.ts.map