Skip to content

Instantly share code, notes, and snippets.

View the-creature's full-sized avatar

Liccy Creature the-creature

  • Fuentes Innovation
  • Los Angeles, CA
View GitHub Profile
import React, { useCallback } from 'react';
import { ButtonBase, ChildrenWrapper } from './Button.styles';
export interface ButtonProps {
variant?: 'primary' | 'icon';
rounded?: boolean;
outlined?: boolean;
disabled?: boolean;
children: React.ReactNode;
iconLeft?: React.ReactNode;