about summary refs log tree commit diff
path: root/src/components/video/PlayButtonIcon.tsx
blob: 801cad9b923617aa3683201260c6270440ba68b8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
import {View} from 'react-native'

import {atoms as a, useTheme} from '#/alf'
import {Play_Filled_Corner0_Rounded as PlayIcon} from '#/components/icons/Play'

export function PlayButtonIcon({size = 32}: {size?: number}) {
  const t = useTheme()
  const bg = t.name === 'light' ? t.palette.contrast_25 : t.palette.contrast_975
  const fg = t.name === 'light' ? t.palette.contrast_975 : t.palette.contrast_25

  return (
    <>
      <View
        style={[
          a.rounded_full,
          {
            backgroundColor: bg,
            shadowColor: 'black',
            shadowRadius: 32,
            shadowOpacity: 0.5,
            elevation: 24,
            width: size + size / 1.5,
            height: size + size / 1.5,
            opacity: 0.7,
          },
        ]}
      />
      <PlayIcon width={size} fill={fg} style={a.absolute} />
    </>
  )
}