---
title: none
framework: swiftui
role: symbol
role_heading: Type Property
path: swiftui/symbolvariants/none
---

# none

No variant for a symbol.

## Declaration

```swift
static let none: SymbolVariants
```

## Discussion

Discussion Using this variant with the symbolVariant(_:) modifier doesn’t have any effect. Instead, to show a symbol that ignores the current variant, directly set the symbolVariants environment value to none using the environment(_:_:) modifer: HStack {     Image(systemName: "heart")     Image(systemName: "heart")         .environment(\.symbolVariants, .none) } .symbolVariant(.fill)

## See Also

### Getting symbol variants

- [circle](swiftui/symbolvariants/circle-swift.type.property.md)
- [square](swiftui/symbolvariants/square-swift.type.property.md)
- [rectangle](swiftui/symbolvariants/rectangle-swift.type.property.md)
- [fill](swiftui/symbolvariants/fill-swift.type.property.md)
- [slash](swiftui/symbolvariants/slash-swift.type.property.md)
