dappconnect-sdks/packages/icons/12/notification-icon.tsx

22 lines
540 B
TypeScript
Raw Normal View History

import { Circle, Svg } from 'react-native-svg'
import { useCurrentColor } from 'tamagui'
import type { SvgProps } from 'react-native-svg'
2023-01-23 13:03:08 +00:00
const SvgNotificationIcon = (props: SvgProps) => {
const { color: colorToken = 'currentColor', ...rest } = props
const color = useCurrentColor(colorToken)
return (
<Svg
width={12}
height={12}
fill="none"
xmlns="http://www.w3.org/2000/svg"
{...props}
>
<Circle cx={6} cy={6} r={4} fill="#4360DF" />
</Svg>
)
}
2023-01-23 13:03:08 +00:00
export default SvgNotificationIcon