@ticketmaster/prism
Version:
Live Nation Component library
13 lines (12 loc) • 343 B
TypeScript
/// <reference types="styled-components" />
import * as React from 'react';
import { ITheme } from '../../themes/theme';
interface IProps {
altText: string;
white?: boolean;
theme: ITheme;
}
declare const _default: React.ForwardRefExoticComponent<Pick<IProps, "white" | "altText"> & {
theme?: any;
}>;
export default _default;