Create a local (private) variable of the type of the Component and only GetComponent<type> once for Awake() or Start(). From that point on you may reference the variable rather than having to look up the Component all the time.
I'm unsure whether GetComponent has a performance hit like Find does.