package frameproto
import (
	"io"
)
// WriteFrameButton1Target will write the HTML  element for the Frame-Protocol's (i.e., Farcaster Frame's) "fc:frame:button:1:target" name-value pair.
//
// For example, this call:
//
//	var target string = "https://example.com/thing/do-it"
//	
//	frameproto.WriteFrameButton1Target(writer, target)
//
// Would write this HTML  element:
//
//	
func WriteFrameButton1Target(writer io.Writer, target string) error {
	const property string = MetaPropertyFrameButton1Target
	return writeMetaPropertyContent(writer, property, target)
}