/**
 * 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 {};
