repo
stringlengths
7
64
file_url
stringlengths
81
338
file_path
stringlengths
5
257
content
stringlengths
0
32.8k
language
stringclasses
1 value
license
stringclasses
7 values
commit_sha
stringlengths
40
40
retrieved_at
stringdate
2026-01-04 15:25:31
2026-01-05 01:50:38
truncated
bool
2 classes
acapela/monorepo
https://github.com/acapela/monorepo/blob/27047fac40321891abe42d04d40a14ca329f87ee/shared/hooks/useEqualState.ts
shared/hooks/useEqualState.ts
import { isEqual } from "lodash"; import { SetStateAction, useCallback, useState } from "react"; function isStateSetter<T>(action: SetStateAction<T>): action is (old: T) => T { return typeof action === "function"; } type InitialState<S> = S | (() => S); /** * Works the same way as normal useState, except it'll no...
typescript
MIT
27047fac40321891abe42d04d40a14ca329f87ee
2026-01-05T05:01:22.776906Z
false
acapela/monorepo
https://github.com/acapela/monorepo/blob/27047fac40321891abe42d04d40a14ca329f87ee/shared/hooks/useValueRef.ts
shared/hooks/useValueRef.ts
import { useEffect, useRef } from "react"; export function useValueRef<T>(newValue: T) { const ref = useRef(newValue); useEffect(() => { ref.current = newValue; }, [newValue]); return ref; }
typescript
MIT
27047fac40321891abe42d04d40a14ca329f87ee
2026-01-05T05:01:22.776906Z
false
acapela/monorepo
https://github.com/acapela/monorepo/blob/27047fac40321891abe42d04d40a14ca329f87ee/shared/routes/utils.ts
shared/routes/utils.ts
import { mapValues } from "lodash"; type LabeledRoutes = Record<string, string | readonly [string, readonly string[]]>; type Params<Keys extends string> = Record<Keys, string>; export type RouteBuilder<ParamKeys extends string> = ((params: Params<ParamKeys>) => string) & { paramKeys: ParamKeys[]; path: string; }...
typescript
MIT
27047fac40321891abe42d04d40a14ca329f87ee
2026-01-05T05:01:22.776906Z
false
acapela/monorepo
https://github.com/acapela/monorepo/blob/27047fac40321891abe42d04d40a14ca329f87ee/shared/routes/index.ts
shared/routes/index.ts
import { parameterizeRoutes } from "@aca/shared/routes/utils"; export const routes = parameterizeRoutes({ home: "/", appDownload: "/app/download", logout: "/logout", login: "/login", finishLogInInApp: "/app/return-to-app", loginForDesktop: "/app/login", stripeCheckedOut: "/stripe/checked-out", } as const...
typescript
MIT
27047fac40321891abe42d04d40a14ca329f87ee
2026-01-05T05:01:22.776906Z
false
acapela/monorepo
https://github.com/acapela/monorepo/blob/27047fac40321891abe42d04d40a14ca329f87ee/shared/components/injectProps.tsx
shared/components/injectProps.tsx
import { ComponentType } from "react"; import React from "react"; import styled from "styled-components"; // eslint-disable-next-line @typescript-eslint/no-explicit-any type InferProps<C extends ComponentType<any>> = C extends ComponentType<infer P> ? P : never; // eslint-disable-next-line @typescript-eslint/no-expli...
typescript
MIT
27047fac40321891abe42d04d40a14ca329f87ee
2026-01-05T05:01:22.776906Z
false
acapela/monorepo
https://github.com/acapela/monorepo/blob/27047fac40321891abe42d04d40a14ca329f87ee/shared/callbacks/lazyChangeCallback.ts
shared/callbacks/lazyChangeCallback.ts
interface ValueBox<V> { value: V; } export function createLazyChangeCallback<V>(callback: (value: V) => void) { let lastValue: ValueBox<V> | null = null; function makeCall(value: V) { lastValue = { value }; callback(value); } return function callLazy(value: V, force = false) { if (force) { ...
typescript
MIT
27047fac40321891abe42d04d40a14ca329f87ee
2026-01-05T05:01:22.776906Z
false
acapela/monorepo
https://github.com/acapela/monorepo/blob/27047fac40321891abe42d04d40a14ca329f87ee/shared/callbacks/combineCallbacks.ts
shared/callbacks/combineCallbacks.ts
import { Maybe } from "@aca/shared/types"; // eslint-disable-next-line @typescript-eslint/no-explicit-any type Callback<Args extends any[]> = (...args: Args) => void; // eslint-disable-next-line @typescript-eslint/no-explicit-any export function combineCallbacks<Args extends any[]>(...callbacks: Array<Maybe<Callback<...
typescript
MIT
27047fac40321891abe42d04d40a14ca329f87ee
2026-01-05T05:01:22.776906Z
false
acapela/monorepo
https://github.com/acapela/monorepo/blob/27047fac40321891abe42d04d40a14ca329f87ee/shared/types/analytics.ts
shared/types/analytics.ts
import { PickByValue } from "utility-types"; import { AppTheme } from "@aca/desktop/bridge/ui"; import { Maybe } from "@aca/shared/types"; import { PreloadInstrumentationReportResult, PreloadURLLoadState } from "../debug/electronInstrumentation.types"; export type PlanType = "free" | "premium" | "ultimate"; export ...
typescript
MIT
27047fac40321891abe42d04d40a14ca329f87ee
2026-01-05T05:01:22.776906Z
false
acapela/monorepo
https://github.com/acapela/monorepo/blob/27047fac40321891abe42d04d40a14ca329f87ee/shared/dates/utils.ts
shared/dates/utils.ts
export function nullableDate(input?: string | null) { if (!input) return null; return new Date(input); } export function cloneDate(date: Date): Date { return new Date(date.getTime()); }
typescript
MIT
27047fac40321891abe42d04d40a14ca329f87ee
2026-01-05T05:01:22.776906Z
false
acapela/monorepo
https://github.com/acapela/monorepo/blob/27047fac40321891abe42d04d40a14ca329f87ee/shared/dates/times.ts
shared/dates/times.ts
import { isFriday, nextMonday, setHours, startOfToday, startOfTomorrow } from "date-fns"; const DEFAULT_END_OF_WORK_DAY = 18; // setting default end of work day to 6pm export function getTodayEndOfDay(currentUserEndOfWorkDay: number = DEFAULT_END_OF_WORK_DAY): Date { return setHours(startOfToday(), currentUserEndOf...
typescript
MIT
27047fac40321891abe42d04d40a14ca329f87ee
2026-01-05T05:01:22.776906Z
false
acapela/monorepo
https://github.com/acapela/monorepo/blob/27047fac40321891abe42d04d40a14ca329f87ee/shared/dates/utcUtils.ts
shared/dates/utcUtils.ts
import { format, getTimezoneOffset, utcToZonedTime } from "date-fns-tz"; export function convertZonedHourToUTCHour(zonedHour: number, timeZone: string) { // Convert offsets west from UTC as negative and east from UTC as positive // Unusual timezones (like UTC+12:45) will use a full hour with Math.ceil // 3600000...
typescript
MIT
27047fac40321891abe42d04d40a14ca329f87ee
2026-01-05T05:01:22.776906Z
false
acapela/monorepo
https://github.com/acapela/monorepo/blob/27047fac40321891abe42d04d40a14ca329f87ee/shared/dates/parseJSONWithDates.ts
shared/dates/parseJSONWithDates.ts
import { JsonValue } from "@aca/shared/types"; export function tryParseStringDate(originalValue: unknown): Date | null { if (typeof originalValue !== "string") { return null; } const parseResult = Date.parse(originalValue); if (isNaN(parseResult)) { return null; } return new Date(parseResult); }...
typescript
MIT
27047fac40321891abe42d04d40a14ca329f87ee
2026-01-05T05:01:22.776906Z
false
acapela/monorepo
https://github.com/acapela/monorepo/blob/27047fac40321891abe42d04d40a14ca329f87ee/shared/dates/groupByDate.ts
shared/dates/groupByDate.ts
import { sortBy } from "lodash"; interface ItemsDateGroup<I> { date: Date; items: I[]; } export function groupByDate<I>(items: I[], dateGetter: (item: I) => Date): ItemsDateGroup<I>[] { const itemGroups: ItemsDateGroup<I>[] = []; for (const item of items) { const itemDate = dateGetter(item); let ite...
typescript
MIT
27047fac40321891abe42d04d40a14ca329f87ee
2026-01-05T05:01:22.776906Z
false
acapela/monorepo
https://github.com/acapela/monorepo/blob/27047fac40321891abe42d04d40a14ca329f87ee/shared/dates/format.ts
shared/dates/format.ts
import { compareAsc, differenceInDays, differenceInHours, differenceInMinutes, formatRelative, isSameDay, isThisYear, isToday, isTomorrow, isYesterday, startOfWeek, } from "date-fns"; import { upperFirst } from "lodash"; import { timeDuration } from "../time"; export function relativeFormatDate(...
typescript
MIT
27047fac40321891abe42d04d40a14ca329f87ee
2026-01-05T05:01:22.776906Z
false
acapela/monorepo
https://github.com/acapela/monorepo/blob/27047fac40321891abe42d04d40a14ca329f87ee/shared/dates/iso.ts
shared/dates/iso.ts
export function nowISO() { return new Date().toISOString(); }
typescript
MIT
27047fac40321891abe42d04d40a14ca329f87ee
2026-01-05T05:01:22.776906Z
false
acapela/monorepo
https://github.com/acapela/monorepo/blob/27047fac40321891abe42d04d40a14ca329f87ee/shared/dates/autocomplete/suggestions.ts
shared/dates/autocomplete/suggestions.ts
import { parseDate } from "chrono-node"; import { isPast, isSameMinute } from "date-fns"; import { range as _range, sortBy, uniqBy, upperFirst } from "lodash"; import { fuzzySearch } from "@aca/shared/fuzzy/fuzzySearch"; import { permutation } from "@aca/shared/text/permutations/permutations"; const weekdays = ["Sund...
typescript
MIT
27047fac40321891abe42d04d40a14ca329f87ee
2026-01-05T05:01:22.776906Z
false
acapela/monorepo
https://github.com/acapela/monorepo/blob/27047fac40321891abe42d04d40a14ca329f87ee/shared/filters/index.ts
shared/filters/index.ts
import { entries } from "lodash"; import { isPrimitive } from "utility-types"; export type FiltersData<T> = { [Key in keyof T]?: FilterValue<T[Key]>; }; export type FiltersInput<T> = FiltersData<T> & { $or?: FiltersInput<T>[]; }; export type FilterValue<T> = T | { $in: T[] } | { $not: T } | { $notIn: T[] }; exp...
typescript
MIT
27047fac40321891abe42d04d40a14ca329f87ee
2026-01-05T05:01:22.776906Z
false
acapela/monorepo
https://github.com/acapela/monorepo/blob/27047fac40321891abe42d04d40a14ca329f87ee/shared/filters/filters.spec.ts
shared/filters/filters.spec.ts
import { getIsItemMatchingFilters } from "."; export const foo = 42; interface Item { kind: string; name: string; } describe("filters", () => { it("matches $or", () => { const item: Item = { kind: "dog", name: "Rex" }; expect(getIsItemMatchingFilters(item, { $or: [{ kind: "dog" }] })).toBe(true); ...
typescript
MIT
27047fac40321891abe42d04d40a14ca329f87ee
2026-01-05T05:01:22.776906Z
false
acapela/monorepo
https://github.com/acapela/monorepo/blob/27047fac40321891abe42d04d40a14ca329f87ee/shared/fuzzy/commandScore.ts
shared/fuzzy/commandScore.ts
/** * Original source - https://github.com/superhuman/command-score * * Modified it converting to typescript */ // The scores are arranged so that a continuous match of characters will // result in a total score of 1. // // The best case, this character is a match, and either this is the start // of the string, or...
typescript
MIT
27047fac40321891abe42d04d40a14ca329f87ee
2026-01-05T05:01:22.776906Z
false
acapela/monorepo
https://github.com/acapela/monorepo/blob/27047fac40321891abe42d04d40a14ca329f87ee/shared/fuzzy/fuzzySearch.ts
shared/fuzzy/fuzzySearch.ts
import { sortBy } from "lodash"; import { useMemo } from "react"; import { MaybeArray, convertMaybeArrayToArray } from "@aca/shared/array"; import { useMethod } from "../hooks/useMethod"; import { commandScore } from "./commandScore"; type TermsResult = MaybeArray<string>; type TermGetter<T> = (item: T) => TermsRes...
typescript
MIT
27047fac40321891abe42d04d40a14ca329f87ee
2026-01-05T05:01:22.776906Z
false
acapela/monorepo
https://github.com/acapela/monorepo/blob/27047fac40321891abe42d04d40a14ca329f87ee/shared/functions/index.ts
shared/functions/index.ts
// eslint-disable-next-line @typescript-eslint/no-explicit-any type AnyFunction = (...args: any[]) => any; export type FunctionWithProps<F extends AnyFunction, Props> = F & Props; export function createFunctionWithProps<F extends AnyFunction, Props>( func: F, props: Props ): FunctionWithProps<F, Props> { const ...
typescript
MIT
27047fac40321891abe42d04d40a14ca329f87ee
2026-01-05T05:01:22.776906Z
false
acapela/monorepo
https://github.com/acapela/monorepo/blob/27047fac40321891abe42d04d40a14ca329f87ee/shared/text/pluralize.ts
shared/text/pluralize.ts
import { assert } from "@aca/shared/assert"; type PluralInterpolation = string | number | [string, string] | [string]; export function pluralize(strings: TemplateStringsArray, ...interpolations: Array<PluralInterpolation>) { const numberInterpolations = interpolations.filter( (interpolation): interpolation is n...
typescript
MIT
27047fac40321891abe42d04d40a14ca329f87ee
2026-01-05T05:01:22.776906Z
false
acapela/monorepo
https://github.com/acapela/monorepo/blob/27047fac40321891abe42d04d40a14ca329f87ee/shared/text/substring.ts
shared/text/substring.ts
export function removePrefix(input: string, prefix: string) { if (!input.startsWith(prefix)) return input; return input.substr(prefix.length); }
typescript
MIT
27047fac40321891abe42d04d40a14ca329f87ee
2026-01-05T05:01:22.776906Z
false
acapela/monorepo
https://github.com/acapela/monorepo/blob/27047fac40321891abe42d04d40a14ca329f87ee/shared/text/permutations/permutations.spec.ts
shared/text/permutations/permutations.spec.ts
import { permutation } from "./permutations"; it("works", () => { const weekdays = ["Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday"] as const; permutation`${weekdays} in ${[2, 3, 4, 5]} weeks`.getAll(); }); describe("permutations", () => { it("works with basic example", () => { ...
typescript
MIT
27047fac40321891abe42d04d40a14ca329f87ee
2026-01-05T05:01:22.776906Z
false
acapela/monorepo
https://github.com/acapela/monorepo/blob/27047fac40321891abe42d04d40a14ca329f87ee/shared/text/permutations/permutations.ts
shared/text/permutations/permutations.ts
interface PermutationResult<R> { readonly text: string; // Data is lazily resolved to save performance for large amount of permutations if data is not instantly (or never) needed. readonly data: R; } type PermutationInterpolation = ReadonlyArray<InterpolationVariantType>; type PermutationInterpolations = Array<...
typescript
MIT
27047fac40321891abe42d04d40a14ca329f87ee
2026-01-05T05:01:22.776906Z
false
acapela/monorepo
https://github.com/acapela/monorepo/blob/27047fac40321891abe42d04d40a14ca329f87ee/shared/testSupport/setupTests.ts
shared/testSupport/setupTests.ts
import "@testing-library/jest-dom/extend-expect"; import "whatwg-fetch";
typescript
MIT
27047fac40321891abe42d04d40a14ca329f87ee
2026-01-05T05:01:22.776906Z
false
acapela/monorepo
https://github.com/acapela/monorepo/blob/27047fac40321891abe42d04d40a14ca329f87ee/shared/debug/electronInstrumentation.types.ts
shared/debug/electronInstrumentation.types.ts
export interface PreloadURLLoadState { url: string; loadRequested: Date; htmlPageLoad?: Date; fullPageLoad?: Date; browserViewAttached?: Date; browserViewDisposed?: Date; } export interface PreloadInstrumentationReportResult { fullLoadTimeInMs: number; wasFullyLoadedBeforePreview: boolean; userLoadWa...
typescript
MIT
27047fac40321891abe42d04d40a14ca329f87ee
2026-01-05T05:01:22.776906Z
false
acapela/monorepo
https://github.com/acapela/monorepo/blob/27047fac40321891abe42d04d40a14ca329f87ee/shared/debug/addSentryAttachment.ts
shared/debug/addSentryAttachment.ts
import { DsnComponents } from "@sentry/types"; import axios from "axios"; import FormData from "form-data"; import { LogAttachment } from "./logAttachment.types"; function getAttachmentUrlFromDsn(dsn: DsnComponents, eventId: string) { const { host, path, projectId, port, protocol, user } = dsn; return `${protocol...
typescript
MIT
27047fac40321891abe42d04d40a14ca329f87ee
2026-01-05T05:01:22.776906Z
false
acapela/monorepo
https://github.com/acapela/monorepo/blob/27047fac40321891abe42d04d40a14ca329f87ee/shared/debug/logAttachment.types.ts
shared/debug/logAttachment.types.ts
import { isNotNullish } from "@aca/shared/nullish"; export interface LogAttachment { fileName: string; body: string; type: string; } export function isLogAttachment(thing: unknown | LogAttachment): thing is LogAttachment { return isNotNullish(thing) && (thing as LogAttachment).fileName !== undefined; }
typescript
MIT
27047fac40321891abe42d04d40a14ca329f87ee
2026-01-05T05:01:22.776906Z
false
acapela/monorepo
https://github.com/acapela/monorepo/blob/27047fac40321891abe42d04d40a14ca329f87ee/shared/debug/events.ts
shared/debug/events.ts
import { useEffect } from "react"; import { createCleanupObject } from "@aca/shared/cleanup"; import { createDocumentEvent, createWindowEvent } from "@aca/shared/domEvents"; import { isServer } from "@aca/shared/isServer"; function getEventNamesFromProperties(properties: string[]) { return properties .filter((w...
typescript
MIT
27047fac40321891abe42d04d40a14ca329f87ee
2026-01-05T05:01:22.776906Z
false
acapela/monorepo
https://github.com/acapela/monorepo/blob/27047fac40321891abe42d04d40a14ca329f87ee/shared/context/window.ts
shared/context/window.ts
import { createContext, useContext } from "react"; export function getWindow() { return typeof window !== "undefined" ? window : null; } export function getDocument() { return typeof document !== "undefined" ? document : null; } const contextWindow = createContext<Window | null>(getWindow()); export function us...
typescript
MIT
27047fac40321891abe42d04d40a14ca329f87ee
2026-01-05T05:01:22.776906Z
false
acapela/monorepo
https://github.com/acapela/monorepo/blob/27047fac40321891abe42d04d40a14ca329f87ee/shared/recording/useVideoRecording.ts
shared/recording/useVideoRecording.ts
import { useState } from "react"; import { StreamRecording, startRecordingStream } from "./recordStream"; export type VideoRecordingType = "screen" | "camera"; async function getVideoStream(type: VideoRecordingType) { if (type === "screen") { const videoStream = await navigator.mediaDevices.getDisplayMedia({ ...
typescript
MIT
27047fac40321891abe42d04d40a14ca329f87ee
2026-01-05T05:01:22.776906Z
false
acapela/monorepo
https://github.com/acapela/monorepo/blob/27047fac40321891abe42d04d40a14ca329f87ee/shared/recording/recordStream.ts
shared/recording/recordStream.ts
import { AsyncReturnType } from "@aca/shared/types"; import { createDurationObservable } from "./createDurationObservable"; function recordingBlobToFile(blob: Blob): File { /* e.g.: audio/webm;codecs=opus */ const [mimeType] = blob.type.split(";"); const [type, extension] = mimeType.split("/"); const timestam...
typescript
MIT
27047fac40321891abe42d04d40a14ca329f87ee
2026-01-05T05:01:22.776906Z
false
acapela/monorepo
https://github.com/acapela/monorepo/blob/27047fac40321891abe42d04d40a14ca329f87ee/shared/recording/createDurationObservable.ts
shared/recording/createDurationObservable.ts
import { action, makeAutoObservable } from "mobx"; import { createInterval } from "@aca/shared/time"; export function createDurationObservable() { const observableDuration = makeAutoObservable({ duration: 0 }); const clear = createInterval( action(() => { observableDuration.duration++; }), 1000...
typescript
MIT
27047fac40321891abe42d04d40a14ca329f87ee
2026-01-05T05:01:22.776906Z
false
acapela/monorepo
https://github.com/acapela/monorepo/blob/27047fac40321891abe42d04d40a14ca329f87ee/shared/recording/useMicrophoneRecording.ts
shared/recording/useMicrophoneRecording.ts
import { useState } from "react"; import { StreamRecording, startRecordingStream } from "./recordStream"; async function getAudioStream() { return navigator.mediaDevices.getUserMedia({ audio: true }); } async function startRecordingAudio(onFinished?: () => void) { const audioStream = await getAudioStream(); r...
typescript
MIT
27047fac40321891abe42d04d40a14ca329f87ee
2026-01-05T05:01:22.776906Z
false
acapela/monorepo
https://github.com/acapela/monorepo/blob/27047fac40321891abe42d04d40a14ca329f87ee/shared/react/namedForwardRef.tsx
shared/react/namedForwardRef.tsx
import { ForwardRefExoticComponent, ForwardRefRenderFunction, PropsWithoutRef, RefAttributes, forwardRef } from "react"; /** * Built in forwardRef creates anonymous component which results in bunch of fast-refresh warnings quote: * * "Anonymous arrow functions cause Fast Refresh to not preserve local component stat...
typescript
MIT
27047fac40321891abe42d04d40a14ca329f87ee
2026-01-05T05:01:22.776906Z
false
acapela/monorepo
https://github.com/acapela/monorepo/blob/27047fac40321891abe42d04d40a14ca329f87ee/ui/Spinner.tsx
ui/Spinner.tsx
import styled, { css, keyframes } from "styled-components"; import { theme } from "@aca/ui/theme"; const spin = keyframes` to { transform: rotate(360deg); } `; export const UISpinner = styled.div<{ $thick?: boolean }>` display: inline-block; width: 1em; height: 1em; border: 0.1em solid ${theme.colors.pr...
typescript
MIT
27047fac40321891abe42d04d40a14ca329f87ee
2026-01-05T05:01:22.776906Z
false
acapela/monorepo
https://github.com/acapela/monorepo/blob/27047fac40321891abe42d04d40a14ca329f87ee/ui/PresenceAnimator.tsx
ui/PresenceAnimator.tsx
import { HTMLMotionProps, Target as MotionAnimations, motion } from "framer-motion"; import React from "react"; import styled from "styled-components"; import { styledForwardRef } from "@aca/shared/component"; import { objectMap } from "@aca/shared/object"; import { POP_ANIMATION_CONFIG } from "./animations"; interf...
typescript
MIT
27047fac40321891abe42d04d40a14ca329f87ee
2026-01-05T05:01:22.776906Z
false
acapela/monorepo
https://github.com/acapela/monorepo/blob/27047fac40321891abe42d04d40a14ca329f87ee/ui/BodyPortal.tsx
ui/BodyPortal.tsx
import { ReactNode, useEffect, useState } from "react"; import { createPortal } from "react-dom"; import { useIsomorphicLayoutEffect } from "react-use"; import { useWindow } from "@aca/shared/context/window"; interface Props { children: ReactNode; onReady?: () => void; } export function BodyPortal({ children, on...
typescript
MIT
27047fac40321891abe42d04d40a14ca329f87ee
2026-01-05T05:01:22.776906Z
false
acapela/monorepo
https://github.com/acapela/monorepo/blob/27047fac40321891abe42d04d40a14ca329f87ee/ui/HorizontalScroller.tsx
ui/HorizontalScroller.tsx
import assert from "assert"; import React, { ReactNode, RefObject, useRef } from "react"; import { useIsomorphicLayoutEffect, useScroll } from "react-use"; import styled, { css } from "styled-components"; import { useEqualState } from "@aca/shared/hooks/useEqualState"; import { useResizeCallback } from "@aca/shared/h...
typescript
MIT
27047fac40321891abe42d04d40a14ca329f87ee
2026-01-05T05:01:22.776906Z
false
acapela/monorepo
https://github.com/acapela/monorepo/blob/27047fac40321891abe42d04d40a14ca329f87ee/ui/highlight.tsx
ui/highlight.tsx
import { css, keyframes } from "styled-components"; import { theme } from "./theme"; export const highlightDropAnimation = keyframes` 0% { opacity: 0; } 10% { opacity: 1; } 25% { opacity: 1; transform: scale(1) } 100% { opacity: 0; } `; const HIGHLIGHT_OFFSET_PX = 0; export ...
typescript
MIT
27047fac40321891abe42d04d40a14ca329f87ee
2026-01-05T05:01:22.776906Z
false
acapela/monorepo
https://github.com/acapela/monorepo/blob/27047fac40321891abe42d04d40a14ca329f87ee/ui/layout.tsx
ui/layout.tsx
import styled from "styled-components"; export const HorizontalSpacingContainer = styled.div` padding: 0 20px; & & { padding: 0; } `;
typescript
MIT
27047fac40321891abe42d04d40a14ca329f87ee
2026-01-05T05:01:22.776906Z
false
acapela/monorepo
https://github.com/acapela/monorepo/blob/27047fac40321891abe42d04d40a14ca329f87ee/ui/animations.tsx
ui/animations.tsx
import { HTMLMotionProps, Transition } from "framer-motion"; import React from "react"; import { css, keyframes } from "styled-components"; import { namedForwardRef } from "@aca/shared/react/namedForwardRef"; import { PresenceAnimator, PresenceStyles } from "./PresenceAnimator"; export const POP_ANIMATION_CONFIG: Tr...
typescript
MIT
27047fac40321891abe42d04d40a14ca329f87ee
2026-01-05T05:01:22.776906Z
false
acapela/monorepo
https://github.com/acapela/monorepo/blob/27047fac40321891abe42d04d40a14ca329f87ee/ui/disabled.ts
ui/disabled.ts
import { css } from "styled-components"; export const disabledOpacityCss = css` opacity: 0.25; `; export const disabledPointerEventsCss = css` pointer-events: none; `; export const disabledCss = css` opacity: 0.25; pointer-events: none; `;
typescript
MIT
27047fac40321891abe42d04d40a14ca329f87ee
2026-01-05T05:01:22.776906Z
false
acapela/monorepo
https://github.com/acapela/monorepo/blob/27047fac40321891abe42d04d40a14ca329f87ee/ui/responsive.ts
ui/responsive.ts
import { throttle } from "lodash"; import { useState } from "react"; import { useIsomorphicLayoutEffect } from "react-use"; import { StylesPart, css } from "styled-components"; import { createWindowEvent } from "@aca/shared/domEvents"; export const PHONE_MAX_WIDTH = 840; export const LARGE_DESKTOP_MIN_WIDTH = 1800; ...
typescript
MIT
27047fac40321891abe42d04d40a14ca329f87ee
2026-01-05T05:01:22.776906Z
false
acapela/monorepo
https://github.com/acapela/monorepo/blob/27047fac40321891abe42d04d40a14ca329f87ee/ui/presence.ts
ui/presence.ts
import { usePresence } from "framer-motion"; import { useEffect, useState } from "react"; import { createTimeout } from "@aca/shared/time"; export function useUnmountPresence(time: number) { const [isMounted, setIsMounted] = useState(false); const [isNotRemoved, safeToRemove] = usePresence(); useEffect(() => ...
typescript
MIT
27047fac40321891abe42d04d40a14ca329f87ee
2026-01-05T05:01:22.776906Z
false
acapela/monorepo
https://github.com/acapela/monorepo/blob/27047fac40321891abe42d04d40a14ca329f87ee/ui/createPromiseUI.tsx
ui/createPromiseUI.tsx
import { AnimatePresence } from "framer-motion"; import { observer } from "mobx-react"; import React, { ReactNode } from "react"; import { createChannel } from "@aca/shared/channel"; import { createResolvablePromise } from "@aca/shared/promises"; /** * This module allows creating imperative functions that render som...
typescript
MIT
27047fac40321891abe42d04d40a14ca329f87ee
2026-01-05T05:01:22.776906Z
false
acapela/monorepo
https://github.com/acapela/monorepo/blob/27047fac40321891abe42d04d40a14ca329f87ee/ui/index.ts
ui/index.ts
// This is needed to allow resolving `@aca/ui' export default null;
typescript
MIT
27047fac40321891abe42d04d40a14ca329f87ee
2026-01-05T05:01:22.776906Z
false
acapela/monorepo
https://github.com/acapela/monorepo/blob/27047fac40321891abe42d04d40a14ca329f87ee/ui/Stack.tsx
ui/Stack.tsx
import React from "react"; import styled, { css } from "styled-components"; interface Props { direction: "row" | "column"; style?: React.CSSProperties; gap?: number; alignItems?: "center" | "start" | "end" | "stretch"; justifyContent?: "start" | "end" | "center" | "space-between" | "space-around"; children...
typescript
MIT
27047fac40321891abe42d04d40a14ca329f87ee
2026-01-05T05:01:22.776906Z
false
acapela/monorepo
https://github.com/acapela/monorepo/blob/27047fac40321891abe42d04d40a14ca329f87ee/ui/ClientSideOnly.tsx
ui/ClientSideOnly.tsx
import { ReactNode, useEffect, useState } from "react"; interface Props { children: ReactNode; onClientRendered?: () => void; fallback?: ReactNode; } export function ClientSideOnly(props: Props) { const [shouldRender, setShouldRender] = useState(false); useEffect(() => { setShouldRender(true); }, [])...
typescript
MIT
27047fac40321891abe42d04d40a14ca329f87ee
2026-01-05T05:01:22.776906Z
false
acapela/monorepo
https://github.com/acapela/monorepo/blob/27047fac40321891abe42d04d40a14ca329f87ee/ui/wiggle.tsx
ui/wiggle.tsx
import { css, keyframes } from "styled-components"; const WIGGLE_AMPLITUDE = 1; export const wiggleAnimation = keyframes` 10%, 90% { transform: translate3d(-${WIGGLE_AMPLITUDE / 4}px, 0, 0); } 20%, 80% { transform: translate3d(${WIGGLE_AMPLITUDE / 2}px, 0, 0); } 30%, 50%, 70% { transform: tran...
typescript
MIT
27047fac40321891abe42d04d40a14ca329f87ee
2026-01-05T05:01:22.776906Z
false
acapela/monorepo
https://github.com/acapela/monorepo/blob/27047fac40321891abe42d04d40a14ca329f87ee/ui/empty/EmptyStatePlaceholder.tsx
ui/empty/EmptyStatePlaceholder.tsx
import { ReactNode } from "react"; import styled, { css } from "styled-components"; import { theme } from "@aca/ui/theme"; interface Props { title?: ReactNode; description?: ReactNode; icon?: ReactNode; noSpacing?: boolean; className?: string; } export function EmptyStatePlaceholder({ title, description, n...
typescript
MIT
27047fac40321891abe42d04d40a14ca329f87ee
2026-01-05T05:01:22.776906Z
false
acapela/monorepo
https://github.com/acapela/monorepo/blob/27047fac40321891abe42d04d40a14ca329f87ee/ui/styles/global.ts
ui/styles/global.ts
import { css } from "styled-components"; import { devAssignWindowVariable } from "@aca/shared/dev"; import { base } from "./base"; import { fontFacesStyles } from "./fontFaces"; export const globalStyles = css` ${base} ${fontFacesStyles} html { -ms-text-size-adjust: 100%; -webkit-text-size-adjust:...
typescript
MIT
27047fac40321891abe42d04d40a14ca329f87ee
2026-01-05T05:01:22.776906Z
false
acapela/monorepo
https://github.com/acapela/monorepo/blob/27047fac40321891abe42d04d40a14ca329f87ee/ui/styles/fontFaces.tsx
ui/styles/fontFaces.tsx
import { createGlobalStyle, css } from "styled-components"; // We're using font-display: fallback to prevent flickering: // https://styled-components.com/docs/faqs#how-do-i-fix-flickering-text-after-server-side-rendering export const fontFacesStyles = css` @font-face { font-family: "Spezia"; src: url("/font...
typescript
MIT
27047fac40321891abe42d04d40a14ca329f87ee
2026-01-05T05:01:22.776906Z
false
acapela/monorepo
https://github.com/acapela/monorepo/blob/27047fac40321891abe42d04d40a14ca329f87ee/ui/styles/base.ts
ui/styles/base.ts
import { css } from "styled-components"; import { normalize } from "styled-normalize"; import { reset } from "styled-reset"; /* Additional normalization styles */ export const base = css` ${normalize}; ${reset}; *, ::before, ::after { box-sizing: border-box; border-width: 0; border-style: solid;...
typescript
MIT
27047fac40321891abe42d04d40a14ca329f87ee
2026-01-05T05:01:22.776906Z
false
acapela/monorepo
https://github.com/acapela/monorepo/blob/27047fac40321891abe42d04d40a14ca329f87ee/ui/Modal/ScreenCover.tsx
ui/Modal/ScreenCover.tsx
import React from "react"; import { MouseEvent, ReactNode, useRef } from "react"; import styled from "styled-components"; import { BodyPortal } from "@aca/ui/BodyPortal"; import { useUnmountPresence } from "@aca/ui/presence"; import { theme } from "@aca/ui/theme"; import { zIndexValues } from "@aca/ui/theme/zIndex"; ...
typescript
MIT
27047fac40321891abe42d04d40a14ca329f87ee
2026-01-05T05:01:22.776906Z
false
acapela/monorepo
https://github.com/acapela/monorepo/blob/27047fac40321891abe42d04d40a14ca329f87ee/ui/Modal/index.tsx
ui/Modal/index.tsx
import React from "react"; import { ReactNode, RefObject, useRef } from "react"; import styled, { css } from "styled-components"; import { PopPresenceAnimator } from "@aca/ui/animations"; import { CloseIconButton } from "@aca/ui/buttons/CloseIconButton"; import { useShortcut } from "@aca/ui/keyboard/useShortcut"; impo...
typescript
MIT
27047fac40321891abe42d04d40a14ca329f87ee
2026-01-05T05:01:22.776906Z
false
acapela/monorepo
https://github.com/acapela/monorepo/blob/27047fac40321891abe42d04d40a14ca329f87ee/ui/SelectList/index.tsx
ui/SelectList/index.tsx
import { observer } from "mobx-react"; import { ReactNode } from "react"; import styled from "styled-components"; import { useListWithNavigation } from "@aca/shared/hooks/useListWithNavigation"; import { useShortcut } from "@aca/ui/keyboard/useShortcut"; import { theme } from "@aca/ui/theme"; interface Props<T> { i...
typescript
MIT
27047fac40321891abe42d04d40a14ca329f87ee
2026-01-05T05:01:22.776906Z
false
acapela/monorepo
https://github.com/acapela/monorepo/blob/27047fac40321891abe42d04d40a14ca329f87ee/ui/popovers/PopoverMenuTrigger.tsx
ui/popovers/PopoverMenuTrigger.tsx
import { AnimatePresence } from "framer-motion"; import React, { ReactNode, useRef } from "react"; import styled from "styled-components"; import { useBoolean } from "@aca/shared/hooks/useBoolean"; import { useDependencyChangeEffect } from "@aca/shared/hooks/useChangeEffect"; import { theme } from "@aca/ui/theme"; im...
typescript
MIT
27047fac40321891abe42d04d40a14ca329f87ee
2026-01-05T05:01:22.776906Z
false
acapela/monorepo
https://github.com/acapela/monorepo/blob/27047fac40321891abe42d04d40a14ca329f87ee/ui/popovers/TooltipLabel.tsx
ui/popovers/TooltipLabel.tsx
import React, { ReactNode, RefObject } from "react"; import styled from "styled-components"; import { POP_PRESENCE_STYLES } from "@aca/ui/animations"; import { Shortcut } from "@aca/ui/keyboard/Shortcut"; import { ShortcutDefinition } from "@aca/ui/keyboard/shortcutBase"; import { PresenceAnimator } from "@aca/ui/Pres...
typescript
MIT
27047fac40321891abe42d04d40a14ca329f87ee
2026-01-05T05:01:22.776906Z
false
acapela/monorepo
https://github.com/acapela/monorepo/blob/27047fac40321891abe42d04d40a14ca329f87ee/ui/popovers/TooltipsRenderer.tsx
ui/popovers/TooltipsRenderer.tsx
import { AnimatePresence } from "framer-motion"; import React, { useEffect, useRef, useState } from "react"; import { useDebouncedDocumentEvent, useDocumentEvent } from "@aca/shared/domEvents"; import { useDebouncedValue } from "@aca/shared/hooks/useDebouncedValue"; import { getObjectKey } from "@aca/shared/object"; i...
typescript
MIT
27047fac40321891abe42d04d40a14ca329f87ee
2026-01-05T05:01:22.776906Z
false
acapela/monorepo
https://github.com/acapela/monorepo/blob/27047fac40321891abe42d04d40a14ca329f87ee/ui/popovers/Popover.tsx
ui/popovers/Popover.tsx
import { Placement } from "@popperjs/core"; import { throttle } from "lodash"; import React, { ReactNode, RefObject, useState } from "react"; import { usePopper } from "react-popper"; import styled from "styled-components"; import { useHandleCloseRequest } from "@aca/shared/hooks/useClickOutside"; import { useRefValue...
typescript
MIT
27047fac40321891abe42d04d40a14ca329f87ee
2026-01-05T05:01:22.776906Z
false
acapela/monorepo
https://github.com/acapela/monorepo/blob/27047fac40321891abe42d04d40a14ca329f87ee/ui/popovers/DropdownPanelBody.tsx
ui/popovers/DropdownPanelBody.tsx
import styled from "styled-components"; import { PopPresenceAnimator } from "@aca/ui/animations"; import { theme } from "@aca/ui/theme"; export const UIDropdownPanelBody = styled(PopPresenceAnimator)<{}>` padding: 5px 0; display: flex; flex-direction: column; ${theme.colors.panels.popover.withBorder.asBgWithR...
typescript
MIT
27047fac40321891abe42d04d40a14ca329f87ee
2026-01-05T05:01:22.776906Z
false
acapela/monorepo
https://github.com/acapela/monorepo/blob/27047fac40321891abe42d04d40a14ca329f87ee/ui/popovers/tooltipProps.ts
ui/popovers/tooltipProps.ts
import { RefObject } from "react"; import { getElementAttribute, useDOMAttributeValue } from "@aca/shared/hooks/useElementAttribute"; import { ShortcutDefinition } from "@aca/ui/keyboard/shortcutBase"; const TOOLTIP_LABEL_ATTRIBUTE = "data-tooltip"; const TOOLTIP_SHORTCUT_ATTRIBUTE = "data-tooltip-shortcut"; export ...
typescript
MIT
27047fac40321891abe42d04d40a14ca329f87ee
2026-01-05T05:01:22.776906Z
false
acapela/monorepo
https://github.com/acapela/monorepo/blob/27047fac40321891abe42d04d40a14ca329f87ee/ui/popovers/PopoverPanel.tsx
ui/popovers/PopoverPanel.tsx
import { Placement } from "@popperjs/core"; import React from "react"; import styled from "styled-components"; import { theme } from "@aca/ui/theme"; import { PopPresenceAnimator } from "../animations"; import { Popover, PopoverProps } from "./Popover"; export type PopoverPlacement = Placement; export const Popover...
typescript
MIT
27047fac40321891abe42d04d40a14ca329f87ee
2026-01-05T05:01:22.776906Z
false
acapela/monorepo
https://github.com/acapela/monorepo/blob/27047fac40321891abe42d04d40a14ca329f87ee/ui/popovers/PopoverMenu.tsx
ui/popovers/PopoverMenu.tsx
import { runInAction } from "mobx"; import React, { ReactNode, RefObject, useRef } from "react"; import { useClickAway } from "react-use"; import styled, { css } from "styled-components"; import { theme } from "@aca/ui/theme"; import { UIDropdownPanelBody } from "./DropdownPanelBody"; import { Popover, PopoverPlaceme...
typescript
MIT
27047fac40321891abe42d04d40a14ca329f87ee
2026-01-05T05:01:22.776906Z
false
acapela/monorepo
https://github.com/acapela/monorepo/blob/27047fac40321891abe42d04d40a14ca329f87ee/ui/popovers/Tooltip.tsx
ui/popovers/Tooltip.tsx
import { AnimatePresence } from "framer-motion"; import React from "react"; import styled from "styled-components"; import { createChannel } from "@aca/shared/channel"; import { createDocumentEvent, createWindowEvent, useElementEvent } from "@aca/shared/domEvents"; import { useDebouncedBoolean } from "@aca/shared/hook...
typescript
MIT
27047fac40321891abe42d04d40a14ca329f87ee
2026-01-05T05:01:22.776906Z
false
acapela/monorepo
https://github.com/acapela/monorepo/blob/27047fac40321891abe42d04d40a14ca329f87ee/ui/icons/CircleLabel.tsx
ui/icons/CircleLabel.tsx
import { ReactNode } from "react"; import styled from "styled-components"; import { theme } from "@aca/ui/theme"; interface Props { className?: string; label: ReactNode; // TODO PR: named size } export const CircleLabel = styled(function CircleLabel({ className, label }: Props) { return ( <UIHolder class...
typescript
MIT
27047fac40321891abe42d04d40a14ca329f87ee
2026-01-05T05:01:22.776906Z
false
acapela/monorepo
https://github.com/acapela/monorepo/blob/27047fac40321891abe42d04d40a14ca329f87ee/ui/icons/CircleIcon.tsx
ui/icons/CircleIcon.tsx
import React, { ReactNode } from "react"; import styled from "styled-components"; interface Props { className?: string; icon: ReactNode; } export function CircleIcon({ className, icon }: Props) { return <UIHolder className={className}>{icon}</UIHolder>; } const UIHolder = styled.div<{}>``;
typescript
MIT
27047fac40321891abe42d04d40a14ca329f87ee
2026-01-05T05:01:22.776906Z
false
acapela/monorepo
https://github.com/acapela/monorepo/blob/27047fac40321891abe42d04d40a14ca329f87ee/ui/icons/priorities.tsx
ui/icons/priorities.tsx
import * as React from "react"; export const PriorityNoneIcon = React.memo((props: React.SVGProps<SVGSVGElement>) => ( <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" {...props}> <path d="M7 11H6C5.44772 11 5 11.4477 5 12V13C5 13.5523 5.44772 14 6 14H7C7.55228...
typescript
MIT
27047fac40321891abe42d04d40a14ca329f87ee
2026-01-05T05:01:22.776906Z
false
acapela/monorepo
https://github.com/acapela/monorepo/blob/27047fac40321891abe42d04d40a14ca329f87ee/ui/icons/CurvedArrow.tsx
ui/icons/CurvedArrow.tsx
export function CurvedArrow() { return ( <svg xmlns="http://www.w3.org/2000/svg" width="52" height="58"> <path d="M 1.539 15.117 C 1.539 15.117 5.726 27.717 18 38 C 30.274 48.283 45.605 46.273 45.605 46.273" fill="transparent" strokeWidth="3" stroke="rgb(255, 87, 227)" ...
typescript
MIT
27047fac40321891abe42d04d40a14ca329f87ee
2026-01-05T05:01:22.776906Z
false
acapela/monorepo
https://github.com/acapela/monorepo/blob/27047fac40321891abe42d04d40a14ca329f87ee/ui/icons/index.ts
ui/icons/index.ts
export * from "./default";
typescript
MIT
27047fac40321891abe42d04d40a14ca329f87ee
2026-01-05T05:01:22.776906Z
false
acapela/monorepo
https://github.com/acapela/monorepo/blob/27047fac40321891abe42d04d40a14ca329f87ee/ui/icons/default/Gift.tsx
ui/icons/default/Gift.tsx
import * as React from "react"; function SvgGift(props: React.SVGProps<SVGSVGElement>) { return ( <svg width="1em" height="1em" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" {...props}> <path fillRule="evenodd" clipRule="evenodd" d="M15.5 2.75a1.75 1.75 0 110 3....
typescript
MIT
27047fac40321891abe42d04d40a14ca329f87ee
2026-01-05T05:01:22.776906Z
false
acapela/monorepo
https://github.com/acapela/monorepo/blob/27047fac40321891abe42d04d40a14ca329f87ee/ui/icons/default/SignOut.tsx
ui/icons/default/SignOut.tsx
import * as React from "react"; function SvgSignOut(props: React.SVGProps<SVGSVGElement>) { return ( <svg width="1em" height="1em" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" {...props}> <path fillRule="evenodd" clipRule="evenodd" d="M8 1.25h-.036c-.904 0-1.63...
typescript
MIT
27047fac40321891abe42d04d40a14ca329f87ee
2026-01-05T05:01:22.776906Z
false
acapela/monorepo
https://github.com/acapela/monorepo/blob/27047fac40321891abe42d04d40a14ca329f87ee/ui/icons/default/Link2.tsx
ui/icons/default/Link2.tsx
import * as React from "react"; function SvgLink2(props: React.SVGProps<SVGSVGElement>) { return ( <svg width="1em" height="1em" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" {...props}> <path fillRule="evenodd" clipRule="evenodd" d="M3.25 4A.75.75 0 014 3.25h16...
typescript
MIT
27047fac40321891abe42d04d40a14ca329f87ee
2026-01-05T05:01:22.776906Z
false
acapela/monorepo
https://github.com/acapela/monorepo/blob/27047fac40321891abe42d04d40a14ca329f87ee/ui/icons/default/Brush.tsx
ui/icons/default/Brush.tsx
import * as React from "react"; function SvgBrush(props: React.SVGProps<SVGSVGElement>) { return ( <svg width="1em" height="1em" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" {...props}> <path fillRule="evenodd" clipRule="evenodd" d="M6.99 1.25a2.74 2.74 0 00-2....
typescript
MIT
27047fac40321891abe42d04d40a14ca329f87ee
2026-01-05T05:01:22.776906Z
false
acapela/monorepo
https://github.com/acapela/monorepo/blob/27047fac40321891abe42d04d40a14ca329f87ee/ui/icons/default/Quotes.tsx
ui/icons/default/Quotes.tsx
import * as React from "react"; function SvgQuotes(props: React.SVGProps<SVGSVGElement>) { return ( <svg width="1em" height="1em" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" {...props}> <path fillRule="evenodd" clipRule="evenodd" d="M17 4.25h-.025c-.445 0-.816...
typescript
MIT
27047fac40321891abe42d04d40a14ca329f87ee
2026-01-05T05:01:22.776906Z
false
acapela/monorepo
https://github.com/acapela/monorepo/blob/27047fac40321891abe42d04d40a14ca329f87ee/ui/icons/default/Export.tsx
ui/icons/default/Export.tsx
import * as React from "react"; function SvgExport(props: React.SVGProps<SVGSVGElement>) { return ( <svg width="1em" height="1em" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" {...props}> <path fillRule="evenodd" clipRule="evenodd" d="M21.75 14a.75.75 0 00-1.5 0...
typescript
MIT
27047fac40321891abe42d04d40a14ca329f87ee
2026-01-05T05:01:22.776906Z
false
acapela/monorepo
https://github.com/acapela/monorepo/blob/27047fac40321891abe42d04d40a14ca329f87ee/ui/icons/default/Undo2.tsx
ui/icons/default/Undo2.tsx
import * as React from "react"; function SvgUndo2(props: React.SVGProps<SVGSVGElement>) { return ( <svg width="1em" height="1em" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" {...props}> <path fillRule="evenodd" clipRule="evenodd" d="M3 7.25a.75.75 0 01.75.75v4....
typescript
MIT
27047fac40321891abe42d04d40a14ca329f87ee
2026-01-05T05:01:22.776906Z
false
acapela/monorepo
https://github.com/acapela/monorepo/blob/27047fac40321891abe42d04d40a14ca329f87ee/ui/icons/default/Image.tsx
ui/icons/default/Image.tsx
import * as React from "react"; function SvgImage(props: React.SVGProps<SVGSVGElement>) { return ( <svg width="1em" height="1em" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" {...props}> <path fillRule="evenodd" clipRule="evenodd" d="M12 3.75a8.25 8.25 0 00-7.5 ...
typescript
MIT
27047fac40321891abe42d04d40a14ca329f87ee
2026-01-05T05:01:22.776906Z
false
acapela/monorepo
https://github.com/acapela/monorepo/blob/27047fac40321891abe42d04d40a14ca329f87ee/ui/icons/default/VolumeMute.tsx
ui/icons/default/VolumeMute.tsx
import * as React from "react"; function SvgVolumeMute(props: React.SVGProps<SVGSVGElement>) { return ( <svg width="1em" height="1em" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" {...props}> <path fillRule="evenodd" clipRule="evenodd" d="M15.715 4.831c-.405.371...
typescript
MIT
27047fac40321891abe42d04d40a14ca329f87ee
2026-01-05T05:01:22.776906Z
false
acapela/monorepo
https://github.com/acapela/monorepo/blob/27047fac40321891abe42d04d40a14ca329f87ee/ui/icons/default/ChartLine.tsx
ui/icons/default/ChartLine.tsx
import * as React from "react"; function SvgChartLine(props: React.SVGProps<SVGSVGElement>) { return ( <svg width="1em" height="1em" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" {...props}> <path fillRule="evenodd" clipRule="evenodd" d="M9 2.25h-.055c-1.367 0-2...
typescript
MIT
27047fac40321891abe42d04d40a14ca329f87ee
2026-01-05T05:01:22.776906Z
false
acapela/monorepo
https://github.com/acapela/monorepo/blob/27047fac40321891abe42d04d40a14ca329f87ee/ui/icons/default/Processor.tsx
ui/icons/default/Processor.tsx
import * as React from "react"; function SvgProcessor(props: React.SVGProps<SVGSVGElement>) { return ( <svg width="1em" height="1em" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" {...props}> <path fillRule="evenodd" clipRule="evenodd" d="M8 1.25a.75.75 0 01.75.7...
typescript
MIT
27047fac40321891abe42d04d40a14ca329f87ee
2026-01-05T05:01:22.776906Z
false
acapela/monorepo
https://github.com/acapela/monorepo/blob/27047fac40321891abe42d04d40a14ca329f87ee/ui/icons/default/Copyright.tsx
ui/icons/default/Copyright.tsx
import * as React from "react"; function SvgCopyright(props: React.SVGProps<SVGSVGElement>) { return ( <svg width="1em" height="1em" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" {...props}> <path fillRule="evenodd" clipRule="evenodd" d="M12 2.25c-5.385 0-9.75 4...
typescript
MIT
27047fac40321891abe42d04d40a14ca329f87ee
2026-01-05T05:01:22.776906Z
false
acapela/monorepo
https://github.com/acapela/monorepo/blob/27047fac40321891abe42d04d40a14ca329f87ee/ui/icons/default/Droplet.tsx
ui/icons/default/Droplet.tsx
import * as React from "react"; function SvgDroplet(props: React.SVGProps<SVGSVGElement>) { return ( <svg width="1em" height="1em" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" {...props}> <path fillRule="evenodd" clipRule="evenodd" d="M12 3.167c-.402 0-.614.137...
typescript
MIT
27047fac40321891abe42d04d40a14ca329f87ee
2026-01-05T05:01:22.776906Z
false
acapela/monorepo
https://github.com/acapela/monorepo/blob/27047fac40321891abe42d04d40a14ca329f87ee/ui/icons/default/ShoppingBasket.tsx
ui/icons/default/ShoppingBasket.tsx
import * as React from "react"; function SvgShoppingBasket(props: React.SVGProps<SVGSVGElement>) { return ( <svg width="1em" height="1em" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" {...props}> <path fillRule="evenodd" clipRule="evenodd" d="M9.6 3.45a.75.75 0 ...
typescript
MIT
27047fac40321891abe42d04d40a14ca329f87ee
2026-01-05T05:01:22.776906Z
false
acapela/monorepo
https://github.com/acapela/monorepo/blob/27047fac40321891abe42d04d40a14ca329f87ee/ui/icons/default/Stopwatch.tsx
ui/icons/default/Stopwatch.tsx
import * as React from "react"; function SvgStopwatch(props: React.SVGProps<SVGSVGElement>) { return ( <svg width="1em" height="1em" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" {...props}> <path fillRule="evenodd" clipRule="evenodd" d="M10 .25a.75.75 0 000 1.5...
typescript
MIT
27047fac40321891abe42d04d40a14ca329f87ee
2026-01-05T05:01:22.776906Z
false
acapela/monorepo
https://github.com/acapela/monorepo/blob/27047fac40321891abe42d04d40a14ca329f87ee/ui/icons/default/Battery2.tsx
ui/icons/default/Battery2.tsx
import * as React from "react"; function SvgBattery2(props: React.SVGProps<SVGSVGElement>) { return ( <svg width="1em" height="1em" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" {...props}> <path fillRule="evenodd" clipRule="evenodd" d="M8 5.25h-.055c-1.367 0-2....
typescript
MIT
27047fac40321891abe42d04d40a14ca329f87ee
2026-01-05T05:01:22.776906Z
false
acapela/monorepo
https://github.com/acapela/monorepo/blob/27047fac40321891abe42d04d40a14ca329f87ee/ui/icons/default/Speed.tsx
ui/icons/default/Speed.tsx
import * as React from "react"; function SvgSpeed(props: React.SVGProps<SVGSVGElement>) { return ( <svg width="1em" height="1em" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" {...props}> <g clipPath="url(#speed_svg__clip0)"> <path fillRule="evenodd" clipRule...
typescript
MIT
27047fac40321891abe42d04d40a14ca329f87ee
2026-01-05T05:01:22.776906Z
false
acapela/monorepo
https://github.com/acapela/monorepo/blob/27047fac40321891abe42d04d40a14ca329f87ee/ui/icons/default/LabelHd.tsx
ui/icons/default/LabelHd.tsx
import * as React from "react"; function SvgLabelHd(props: React.SVGProps<SVGSVGElement>) { return ( <svg width="1em" height="1em" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" {...props}> <path fillRule="evenodd" clipRule="evenodd" d="M9.944 2.25h4.112c1.838 0 ...
typescript
MIT
27047fac40321891abe42d04d40a14ca329f87ee
2026-01-05T05:01:22.776906Z
false
acapela/monorepo
https://github.com/acapela/monorepo/blob/27047fac40321891abe42d04d40a14ca329f87ee/ui/icons/default/Umbrella.tsx
ui/icons/default/Umbrella.tsx
import * as React from "react"; function SvgUmbrella(props: React.SVGProps<SVGSVGElement>) { return ( <svg width="1em" height="1em" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" {...props}> <path fillRule="evenodd" clipRule="evenodd" d="M9.078 3.189c-2.699.88-4....
typescript
MIT
27047fac40321891abe42d04d40a14ca329f87ee
2026-01-05T05:01:22.776906Z
false
acapela/monorepo
https://github.com/acapela/monorepo/blob/27047fac40321891abe42d04d40a14ca329f87ee/ui/icons/default/VideoPlus.tsx
ui/icons/default/VideoPlus.tsx
import * as React from "react"; function SvgVideoPlus(props: React.SVGProps<SVGSVGElement>) { return ( <svg width="1em" height="1em" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" {...props}> <path fillRule="evenodd" clipRule="evenodd" d="M20.75 1a.75.75 0 00-1.5...
typescript
MIT
27047fac40321891abe42d04d40a14ca329f87ee
2026-01-05T05:01:22.776906Z
false
acapela/monorepo
https://github.com/acapela/monorepo/blob/27047fac40321891abe42d04d40a14ca329f87ee/ui/icons/default/Activity2.tsx
ui/icons/default/Activity2.tsx
import * as React from "react"; function SvgActivity2(props: React.SVGProps<SVGSVGElement>) { return ( <svg width="1em" height="1em" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" {...props}> <path fillRule="evenodd" clipRule="evenodd" d="M15 4.25c.3 0 .571.179.6...
typescript
MIT
27047fac40321891abe42d04d40a14ca329f87ee
2026-01-05T05:01:22.776906Z
false
acapela/monorepo
https://github.com/acapela/monorepo/blob/27047fac40321891abe42d04d40a14ca329f87ee/ui/icons/default/SortNumber.tsx
ui/icons/default/SortNumber.tsx
import * as React from "react"; function SvgSortNumber(props: React.SVGProps<SVGSVGElement>) { return ( <svg width="1em" height="1em" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" {...props}> <path fillRule="evenodd" clipRule="evenodd" d="M17.287 2.307A.75.75 0 ...
typescript
MIT
27047fac40321891abe42d04d40a14ca329f87ee
2026-01-05T05:01:22.776906Z
false
acapela/monorepo
https://github.com/acapela/monorepo/blob/27047fac40321891abe42d04d40a14ca329f87ee/ui/icons/default/StarSlash.tsx
ui/icons/default/StarSlash.tsx
import * as React from "react"; function SvgStarSlash(props: React.SVGProps<SVGSVGElement>) { return ( <svg width="1em" height="1em" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" {...props}> <path fillRule="evenodd" clipRule="evenodd" d="M1.47 1.47a.75.75 0 011....
typescript
MIT
27047fac40321891abe42d04d40a14ca329f87ee
2026-01-05T05:01:22.776906Z
false
acapela/monorepo
https://github.com/acapela/monorepo/blob/27047fac40321891abe42d04d40a14ca329f87ee/ui/icons/default/Dot.tsx
ui/icons/default/Dot.tsx
import * as React from "react"; export default React.memo((props: React.SVGProps<SVGSVGElement>) => ( <svg width=".8em" height=".8em" viewBox="0 0 12 12" fill="none" xmlns="http://www.w3.org/2000/svg" {...props}> <circle cx="6" cy="6" r="6" fill="currentColor" /> </svg> ));
typescript
MIT
27047fac40321891abe42d04d40a14ca329f87ee
2026-01-05T05:01:22.776906Z
false
acapela/monorepo
https://github.com/acapela/monorepo/blob/27047fac40321891abe42d04d40a14ca329f87ee/ui/icons/default/BorderTop.tsx
ui/icons/default/BorderTop.tsx
import * as React from "react"; function SvgBorderTop(props: React.SVGProps<SVGSVGElement>) { return ( <svg width="1em" height="1em" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" {...props}> <path fillRule="evenodd" clipRule="evenodd" d="M3 3.25a.75.75 0 000 1.5...
typescript
MIT
27047fac40321891abe42d04d40a14ca329f87ee
2026-01-05T05:01:22.776906Z
false
acapela/monorepo
https://github.com/acapela/monorepo/blob/27047fac40321891abe42d04d40a14ca329f87ee/ui/icons/default/AlignCenter2.tsx
ui/icons/default/AlignCenter2.tsx
import * as React from "react"; function SvgAlignCenter2(props: React.SVGProps<SVGSVGElement>) { return ( <svg width="1em" height="1em" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" {...props}> <path fillRule="evenodd" clipRule="evenodd" d="M4 4.25a.75.75 0 000 ...
typescript
MIT
27047fac40321891abe42d04d40a14ca329f87ee
2026-01-05T05:01:22.776906Z
false
acapela/monorepo
https://github.com/acapela/monorepo/blob/27047fac40321891abe42d04d40a14ca329f87ee/ui/icons/default/FileShredder.tsx
ui/icons/default/FileShredder.tsx
import * as React from "react"; function SvgFileShredder(props: React.SVGProps<SVGSVGElement>) { return ( <svg width="1em" height="1em" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" {...props}> <path fillRule="evenodd" clipRule="evenodd" d="M13.25 3.753c-.21-.00...
typescript
MIT
27047fac40321891abe42d04d40a14ca329f87ee
2026-01-05T05:01:22.776906Z
false
acapela/monorepo
https://github.com/acapela/monorepo/blob/27047fac40321891abe42d04d40a14ca329f87ee/ui/icons/default/Tags.tsx
ui/icons/default/Tags.tsx
import * as React from "react"; function SvgTags(props: React.SVGProps<SVGSVGElement>) { return ( <svg width="1em" height="1em" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" {...props}> <path fillRule="evenodd" clipRule="evenodd" d="M8.25 3A.75.75 0 019 2.25h2.0...
typescript
MIT
27047fac40321891abe42d04d40a14ca329f87ee
2026-01-05T05:01:22.776906Z
false