UNPKG

react-poptart

Version:

A simple and elegant notification toaster for React.js

16 lines (15 loc) 391 B
/** * Font Awesome Free 6.6.0 by @fontawesome * https://fontawesome.com * License - https://fontawesome.com/license/free * Copyright 2024 Fonticons, Inc. */ import React from 'react'; import type { T_PoptartType } from './types'; interface Props { type: T_PoptartType; color: string; size: number; } export default function Icon(props: Props): React.JSX.Element; export {};