dappconnect-sdks/packages/icons/20/video-icon.tsx

27 lines
2.2 KiB
TypeScript

import { Path, Svg } from 'react-native-svg'
import { useCurrentColor } from 'tamagui'
import type { SvgProps } from 'react-native-svg'
const SvgVideoIcon = (props: SvgProps) => {
const { color: colorToken = 'currentColor', ...rest } = props
const color = useCurrentColor(colorToken)
return (
<Svg
width={20}
height={20}
fill="none"
xmlns="http://www.w3.org/2000/svg"
{...props}
>
<Path
fillRule="evenodd"
clipRule="evenodd"
d="M7.8 3.35h-.028c-.816 0-1.468 0-1.995.043-.54.044-1.006.137-1.434.355a3.65 3.65 0 0 0-1.595 1.595c-.218.428-.31.893-.355 1.434-.043.526-.043 1.179-.043 1.995v2.456c0 .816 0 1.469.043 1.995.044.54.137 1.006.355 1.434a3.65 3.65 0 0 0 1.595 1.595c.428.218.893.31 1.434.355.527.043 1.179.043 1.995.043h1.456c.816 0 1.469 0 1.995-.043.54-.044 1.006-.137 1.434-.355a3.65 3.65 0 0 0 1.595-1.595c.218-.428.31-.893.355-1.434l.004-.043.144.147c.268.264.606.55 1.027.605a1.65 1.65 0 0 0 1.448-.535c.283-.317.354-.754.386-1.128.034-.398.034-.921.034-1.562V8.83c0-.579 0-1.057-.032-1.424-.032-.352-.1-.757-.363-1.064a1.65 1.65 0 0 0-1.384-.574c-.403.032-.739.27-1.01.497a7.189 7.189 0 0 0-.28.249c-.052-.431-.147-.815-.329-1.172a3.65 3.65 0 0 0-1.595-1.595c-.428-.218-.893-.31-1.434-.355-.526-.043-1.179-.043-1.995-.043H7.8Zm6.85 4.92v2.989l.029.034c.443.517.747.871.987 1.107.188.184.276.232.295.243a.35.35 0 0 0 .292-.104l.002-.005c.008-.02.043-.114.066-.376.028-.335.03-.803.03-1.483V8.863c0-.619-.002-1.039-.028-1.341-.022-.242-.055-.324-.061-.34l-.001-.002a.35.35 0 0 0-.28-.115h-.002c-.015.007-.097.042-.283.197-.233.195-.53.492-.968.929l-.078.079ZM4.933 4.906c.214-.109.49-.18.95-.217C6.35 4.65 6.949 4.65 7.8 4.65h1.4c.85 0 1.45 0 1.918.039.46.037.735.108.949.217a2.35 2.35 0 0 1 1.027 1.027c.109.214.18.49.217.95.039.467.04 1.066.04 1.917v2.4c0 .85-.001 1.45-.04 1.918-.037.46-.108.735-.217.949a2.35 2.35 0 0 1-1.027 1.027c-.214.109-.49.18-.95.217-.467.039-1.066.039-1.917.039H7.8c-.85 0-1.45 0-1.917-.039-.46-.037-.736-.108-.95-.217a2.35 2.35 0 0 1-1.027-1.027c-.109-.214-.18-.49-.217-.95-.038-.467-.039-1.066-.039-1.917V8.8c0-.85 0-1.45.039-1.917.037-.46.108-.736.217-.95a2.35 2.35 0 0 1 1.027-1.027Z"
fill={color}
/>
</Svg>
)
}
export default SvgVideoIcon