diff options
author | Eric Bailey <git@esb.lol> | 2024-05-31 14:45:41 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-05-31 20:45:41 +0100 |
commit | 5cda807d9dcdbc5ed5dbb51a9c43123d60734c8a (patch) | |
tree | e080ec65e68779ef2027d5debf04971bec3ec439 /src/alf/index.tsx | |
parent | f868821cfcc87b62a320e5a1e11375fdb973adc1 (diff) | |
download | voidsky-5cda807d9dcdbc5ed5dbb51a9c43123d60734c8a.tar.zst |
Tweak avi follow button styles (#4304)
* Tighten up * Tweak colors * Tweak for night mode * Add missing file * Contrast plus
Diffstat (limited to 'src/alf/index.tsx')
-rw-r--r-- | src/alf/index.tsx | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/src/alf/index.tsx b/src/alf/index.tsx index f0a0ede7a..75ea28eb0 100644 --- a/src/alf/index.tsx +++ b/src/alf/index.tsx @@ -1,12 +1,14 @@ import React from 'react' import {Dimensions} from 'react-native' + import * as themes from '#/alf/themes' -export * from '#/alf/types' -export * as tokens from '#/alf/tokens' export {atoms} from '#/alf/atoms' -export * from '#/alf/util/platform' +export * as tokens from '#/alf/tokens' +export * from '#/alf/types' export * from '#/alf/util/flatten' +export * from '#/alf/util/platform' +export * from '#/alf/util/themeSelector' type BreakpointName = keyof typeof breakpoints |