@procore/core-react
Version:
React library of Procore Design Guidelines
6 lines (5 loc) • 401 B
TypeScript
import React from 'react';
import type { ActionIconPolyType, ActionIconProps, ActionIconRef } from './ActionIcon.types';
declare function ActionIconInner<T extends ActionIconPolyType>(props: ActionIconProps<T>, ref: ActionIconRef<T>): React.JSX.Element;
export declare const ActionIcon: <Role extends ActionIconPolyType>(props: ActionIconProps<Role>) => ReturnType<typeof ActionIconInner>;
export {};