import * as React from 'react'; import { CSSProperties } from 'styled-components'; type SparkleProps = { height: string; strokeColor: string; repeatCount?: number; style?: CSSProperties; delay?: number; }; const Animation = (props: SparkleProps) => ( <> ); const SparkleCircle = (props: SparkleProps) => ( ); const SparkleStar = (props: SparkleProps) => ( ); const SparkleCross = (props: SparkleProps) => ( ); const patternBase: CSSProperties = { position: 'relative', }; const shapeMixin: CSSProperties = { position: 'absolute', }; export const SparklePatternAlpha = ({ style, ...props }: SparkleProps) => (
); export const SparklePatternBeta = ({ style, ...props }: SparkleProps) => (
);