UNPKG

@aappddeevv/dynamics-client-ui

Version:

## What is it? A library to help you create great dynamics applications.

14 lines (13 loc) 481 B
/// <reference types="react" /> /** * Standard remove button for a line of data being displayed. Has hard-coded styling * Clients can keep it invisible until the row is highlighted using the className. */ import * as React from "react"; export interface Props { /** Curry your onRemove if you want to add parameters to the call. */ onRemove: () => void; className?: string; } export declare const RemoveIconButton: React.SFC<Props>; export default RemoveIconButton;