Skip to content

Instantly share code, notes, and snippets.

@yarinsa
yarinsa / create-classname
Created October 24, 2023 22:45
create-cx.ts
import {prefix} from '@acme/design-tokens';
import {ArgumentArray} from 'classnames';
import classNames from 'classnames';
type CXOptions = {
customPrefix?: string;
};
export const createCX = ({customPrefix}: CXOptions = {}) => {
const prefixToUse = `${customPrefix ? `${prefix}__${customPrefix}` : `${prefix}`}__`;
@yarinsa
yarinsa / Default.json
Created March 20, 2023 10:14
ZSH Profile
{
"Ansi 7 Color" : {
"Green Component" : 0.73333334922790527,
"Blue Component" : 0.73333334922790527,
"Red Component" : 0.73333334922790527
},
"Tags" : [
],
"Ansi 12 Color" : {
@yarinsa
yarinsa / Brewfile
Last active March 9, 2025 08:34
My Brewfile
tap "dopplerhq/cli"
tap "hashicorp/tap"
tap "homebrew/bundle"
tap "homebrew/cask"
tap "homebrew/cask-fonts"
tap "infisical/get-cli"
tap "jesseduffield/lazydocker"
tap "macav/hotelier", "https://www.github.com/macav/hotelier.git"
tap "mike-engel/jwt-cli"
tap "supabase/tap"