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 azure: ASSETS_PATH + 'azure.png', 10 beyondidentity: ASSETS_PATH + 'beyondidentity.png', 11 cognito: ASSETS_PATH + 'cognito.png', 12 coinbase: ASSETS_PATH + 'coinbase.png', 13 id4: ASSETS_PATH + 'identity4.png', 14 dropbox: ASSETS_PATH + 'dropbox.png', 15 facebook: ASSETS_PATH + 'facebook.png', 16 fitbit: ASSETS_PATH + 'fitbit.png', 17 firebase: ASSETS_PATH + 'firebase-phone.png', 18 github: ASSETS_PATH + 'github.png', 19 google: ASSETS_PATH + 'google.png', 20 imgur: ASSETS_PATH + 'imgur.png', 21 okta: ASSETS_PATH + 'okta.png', 22 reddit: ASSETS_PATH + 'reddit.png', 23 slack: ASSETS_PATH + 'slack.png', 24 spotify: ASSETS_PATH + 'spotify.png', 25 strava: ASSETS_PATH + 'strava.png', 26 twitch: ASSETS_PATH + 'twitch.png', 27 twitter: ASSETS_PATH + 'twitter.png', 28 uber: ASSETS_PATH + 'uber.png', 29} as const; 30