import React from 'react'; import { SVG, IProps as IPropsSVG } from '..'; export interface IProps { readonly svg?: IPropsSVG, readonly color?: string } export const IconSnowflake = ({ svg, color = '#9A41FE' }: IProps) => ( ); export default IconSnowflake;