1export { Grid } from './Grid';
2export { GridItem } from './GridItem';
3export { Box } from './Box';
4
5const ASSETS_PATH = '/static/images/sdk/auth-session/';
6
7export const ASSETS = {
8  apple: ASSETS_PATH + 'apple.png',
9  asgardeo: ASSETS_PATH + 'asgardeo.png',
10  azure: ASSETS_PATH + 'azure.png',
11  beyondidentity: ASSETS_PATH + 'beyondidentity.png',
12  cognito: ASSETS_PATH + 'cognito.png',
13  coinbase: ASSETS_PATH + 'coinbase.png',
14  id4: ASSETS_PATH + 'identity4.png',
15  dropbox: ASSETS_PATH + 'dropbox.png',
16  facebook: ASSETS_PATH + 'facebook.png',
17  fitbit: ASSETS_PATH + 'fitbit.png',
18  firebase: ASSETS_PATH + 'firebase-phone.png',
19  github: ASSETS_PATH + 'github.png',
20  google: ASSETS_PATH + 'google.png',
21  imgur: ASSETS_PATH + 'imgur.png',
22  keycloak: ASSETS_PATH + 'keycloak.png',
23  okta: ASSETS_PATH + 'okta.png',
24  reddit: ASSETS_PATH + 'reddit.png',
25  slack: ASSETS_PATH + 'slack.png',
26  spotify: ASSETS_PATH + 'spotify.png',
27  strava: ASSETS_PATH + 'strava.png',
28  twitch: ASSETS_PATH + 'twitch.png',
29  twitter: ASSETS_PATH + 'twitter.png',
30  uber: ASSETS_PATH + 'uber.png',
31} as const;
32