geist-icons
Version:
Library of animated SVG icons based on Vercel's Geist Icons.
11 lines (10 loc) • 312 B
TypeScript
interface SvgContainerProps {
height?: string;
width?: string;
color?: string;
onClick?: () => void;
verticalAlign?: string;
className?: string;
}
declare const SvgContainer: import("styled-components").StyledComponent<"span", any, SvgContainerProps, never>;
export default SvgContainer;