Skip to content

Instantly share code, notes, and snippets.

View alanjohnson's full-sized avatar
💭
Doing the things!

Alan Johnson alanjohnson

💭
Doing the things!
View GitHub Profile
@alanjohnson
alanjohnson / Favorite.jsx
Last active January 21, 2025 18:29
Animated Favorites Icon
import { motion } from "framer-motion";
import { HoverIconProps } from '@/lib/types';
function Favorite ({
isActive = false,
size = null,
style = {},
startColor = "#ffba00",
endColor = "#818181"
}: HoverIconProps) {
@alanjohnson
alanjohnson / Sidebar.jsx
Last active January 21, 2025 18:29
Sidebar Component Example
import React, { ReactNode } from 'react';
import Button from '@/components/Button';
import { icons } from '@/images/_icons';
import { SidebarOverlay, SidebarContainer, SidebarContent } from '@/css/_styledComponents';
type SidebarProps = {
children: ReactNode, $sidebarOpen:boolean, $sidebarWidth:string, callback:() => void
}
function Sidebar({ children, $sidebarOpen = false, $sidebarWidth = '50%', callback }: SidebarProps) {
const closeSidebar = () => {
@alanjohnson
alanjohnson / memoize
Created April 22, 2019 01:02
memoize function
function memoize(fn) {
const cache = {};
return function(...args) {
if ( cache[args] ) {
return cache[args];
};
const result = fn.apply(this, args);
cache[args] = result;
return result;
}