SHAPE
flower
index
noise
Method 1
copy
import {Coolshape} from "coolshapes-react"
export const MyComponent = () =>{
return (
type="flower"
index={1}
noise={false}
size={100}
)
};
Method 2
copy
import {Flower} from "coolshapes-react"
export const MyComponent = () =>{
return (
index={1}
noise={false}
size={100}
)
};