UNPKG

333 BTypeScriptView Raw
1// TypeScript Version: 4.1
2
3export type Attributes = Record<string, string>;
4export type Props = Attributes;
5
6/**
7 * Converts HTML/SVG DOM attributes to React props.
8 *
9 * @param attributes - HTML/SVG DOM attributes.
10 * @return - React props.
11 */
12export default function attributesToProps(attributes: Attributes): Props;