Hello, you can use
@startuml
skinparam component {
FontSize 8
StereotypeFontSize 24
}
component foo <<FOO>>
@enduml

If you want to change the size for a specific Stereotype, you can have:
skinparam component {
FontSize 8
StereotypeFontSize 24
StereotypeFontSize<<BAR>> 50
}
component foo <<FOO>>
component bar <<BAR>>

Does it help you ?